|
Last change
on this file was 9af201e, checked in by MBK <marija.karapandzova@…>, 12 days ago |
|
Fix frontend appearance
|
-
Property mode
set to
100644
|
|
File size:
340 bytes
|
| Rev | Line | |
|---|
| [9af201e] | 1 | //
|
|---|
| 2 | // Constants
|
|---|
| 3 | //
|
|---|
| 4 |
|
|---|
| 5 | 'use strict';
|
|---|
| 6 |
|
|---|
| 7 | module.exports.EOL = '\n';
|
|---|
| 8 |
|
|---|
| 9 | module.exports.SUPPRESS = '==SUPPRESS==';
|
|---|
| 10 |
|
|---|
| 11 | module.exports.OPTIONAL = '?';
|
|---|
| 12 |
|
|---|
| 13 | module.exports.ZERO_OR_MORE = '*';
|
|---|
| 14 |
|
|---|
| 15 | module.exports.ONE_OR_MORE = '+';
|
|---|
| 16 |
|
|---|
| 17 | module.exports.PARSER = 'A...';
|
|---|
| 18 |
|
|---|
| 19 | module.exports.REMAINDER = '...';
|
|---|
| 20 |
|
|---|
| 21 | module.exports._UNRECOGNIZED_ARGS_ATTR = '_unrecognized_args';
|
|---|
Note:
See
TracBrowser
for help on using the repository browser.