You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
457 B
19 lines
457 B
3 years ago
|
'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`
|