This commit is contained in:
darenhsu
2022-07-17 13:16:16 +08:00
parent 84759556ff
commit befd344ab0
28070 changed files with 4008428 additions and 1 deletions
+18
View File
@@ -0,0 +1,18 @@
'use strict'
module.exports = {
array: 'arr',
object: 'obj',
property: 'pro',
string: 'str',
number: 'num',
literal: 'lit',
endPrefix: 'end-',
end: 'end',
error: 'err'
}
module.exports.endArray = module.exports.endPrefix + module.exports.array
module.exports.endObject = module.exports.endPrefix + module.exports.object
module.exports.endLine = `${module.exports.endPrefix}line`
module.exports.dataError = `${module.exports.error}-data`