source: node_modules/yaml/dist/schema/core/schema.js

main
Last change on this file was d24f17c, checked in by Aleksandar Panovski <apano77@…>, 16 months ago

Initial commit

  • Property mode set to 100644
File size: 509 bytes
Line 
1'use strict';
2
3var map = require('../common/map.js');
4var _null = require('../common/null.js');
5var seq = require('../common/seq.js');
6var string = require('../common/string.js');
7var bool = require('./bool.js');
8var float = require('./float.js');
9var int = require('./int.js');
10
11const schema = [
12 map.map,
13 seq.seq,
14 string.string,
15 _null.nullTag,
16 bool.boolTag,
17 int.intOct,
18 int.int,
19 int.intHex,
20 float.floatNaN,
21 float.floatExp,
22 float.float
23];
24
25exports.schema = schema;
Note: See TracBrowser for help on using the repository browser.