Sha256: aa53e414f077035b4d477d19095ac01e60d9df73af716a188fd2772314041f92
Contents?: true
Size: 523 Bytes
Versions: 84
Compression:
Stored size: 523 Bytes
Contents
// 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') ] });
Version data entries
84 entries across 83 versions & 5 rubygems