main
Last change
on this file since d565449 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
|
Rev | Line | |
---|
[d565449] | 1 | // Standard YAML's Failsafe schema.
|
---|
| 2 | // http://www.yaml.org/spec/1.2/spec.html#id2802346
|
---|
| 3 |
|
---|
| 4 |
|
---|
| 5 | 'use strict';
|
---|
| 6 |
|
---|
| 7 |
|
---|
| 8 | var Schema = require('../schema');
|
---|
| 9 |
|
---|
| 10 |
|
---|
| 11 | module.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.