You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
23 lines
538 B
23 lines
538 B
// JS-YAML's default schema for `safeLoad` function.
|
|
// It is not described in the YAML specification.
|
|
//
|
|
// This schema is based on standard YAML's Core schema and includes most of
|
|
// extra types described at YAML tag repository. (http://yaml.org/type/)
|
|
|
|
|
|
'use strict';
|
|
|
|
|
|
module.exports = require('./core').extend({
|
|
implicit: [
|
|
require('../type/timestamp'),
|
|
require('../type/merge')
|
|
],
|
|
explicit: [
|
|
require('../type/binary'),
|
|
require('../type/omap'),
|
|
require('../type/pairs'),
|
|
require('../type/set')
|
|
]
|
|
});
|