Urara-Blog/node_modules/.pnpm-store/v3/files/f5/5180da769b58fd0664845531216b7d172c19cc847494aae53b0f2374f58bbff0d67f9401556ccb32ed03cf72241b4d078240740b080fa8d7aa16197e6ef744
2022-08-14 01:14:53 +08:00

19 lines
523 B
Text

// Standard YAML's JSON schema.
// http://www.yaml.org/spec/1.2/spec.html#id2803231
//
// NOTE: JS-YAML does not support schema-specific tag resolution restrictions.
// So, this schema is not such strict as defined in the YAML specification.
// It allows numbers in binary notaion, use `Null` and `NULL` as `null`, etc.
'use strict';
module.exports = require('./failsafe').extend({
implicit: [
require('../type/null'),
require('../type/bool'),
require('../type/int'),
require('../type/float')
]
});