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.
26 lines
509 B
26 lines
509 B
var Marker = { |
|
ASTERISK: '*', |
|
AT: '@', |
|
BACK_SLASH: '\\', |
|
CARRIAGE_RETURN: '\r', |
|
CLOSE_CURLY_BRACKET: '}', |
|
CLOSE_ROUND_BRACKET: ')', |
|
CLOSE_SQUARE_BRACKET: ']', |
|
COLON: ':', |
|
COMMA: ',', |
|
DOUBLE_QUOTE: '"', |
|
EXCLAMATION: '!', |
|
FORWARD_SLASH: '/', |
|
INTERNAL: '-clean-css-', |
|
NEW_LINE_NIX: '\n', |
|
OPEN_CURLY_BRACKET: '{', |
|
OPEN_ROUND_BRACKET: '(', |
|
OPEN_SQUARE_BRACKET: '[', |
|
SEMICOLON: ';', |
|
SINGLE_QUOTE: '\'', |
|
SPACE: ' ', |
|
TAB: '\t', |
|
UNDERSCORE: '_' |
|
}; |
|
|
|
module.exports = Marker;
|
|
|