[submodule:enums] Replace underscore with quotation

This commit is contained in:
Faisal Salman 2024-10-17 15:43:06 +07:00
parent a4c81a5600
commit 5b7fe9141b

View File

@ -8,8 +8,8 @@
/*jshint esversion: 6 */ /*jshint esversion: 6 */
const Browser = Object.freeze({ const Browser = Object.freeze({
_2345_EXPLORER: '2345Explorer', '2345_EXPLORER': '2345Explorer',
_360: '360 Browser', '360': '360 Browser',
ALIPAY: 'Alipay', ALIPAY: 'Alipay',
AMAYA: 'Amaya', AMAYA: 'Amaya',
ANDROID: 'Android Browser', ANDROID: 'Android Browser',
@ -158,6 +158,7 @@ const BrowserType = Object.freeze({
}); });
const CPU = Object.freeze({ const CPU = Object.freeze({
'68K': '68k',
ARM : 'arm', ARM : 'arm',
ARM_64: 'arm64', ARM_64: 'arm64',
ARM_HF: 'armhf', ARM_HF: 'armhf',
@ -168,7 +169,6 @@ const CPU = Object.freeze({
IRIX_64: 'irix64', IRIX_64: 'irix64',
MIPS: 'mips', MIPS: 'mips',
MIPS_64: 'mips64', MIPS_64: 'mips64',
M68K: '68k',
PA_RISC: 'pa-risc', PA_RISC: 'pa-risc',
PPC: 'ppc', PPC: 'ppc',
SPARC: 'sparc', SPARC: 'sparc',