source: node_modules/js-yaml/lib/schema/failsafe.js@ d24f17c

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

Initial commit

  • Property mode set to 100644
File size: 278 bytes
RevLine 
[d24f17c]1// Standard YAML's Failsafe schema.
2// http://www.yaml.org/spec/1.2/spec.html#id2802346
3
4
5'use strict';
6
7
8var Schema = require('../schema');
9
10
11module.exports = new Schema({
12 explicit: [
13 require('../type/str'),
14 require('../type/seq'),
15 require('../type/map')
16 ]
17});
Note: See TracBrowser for help on using the repository browser.