source: imaps-frontend/node_modules/js-yaml/lib/schema/failsafe.js

main
Last change on this file was d565449, checked in by stefan toskovski <stefantoska84@…>, 4 weeks ago

Update repo after prototype presentation

  • Property mode set to 100644
File size: 278 bytes
Line 
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.