| Index: node_modules/vulcanize/node_modules/update-notifier/node_modules/configstore/node_modules/js-yaml/lib/js-yaml/schema/default_safe.js
|
| diff --git a/node_modules/vulcanize/node_modules/update-notifier/node_modules/configstore/node_modules/js-yaml/lib/js-yaml/schema/default_safe.js b/node_modules/vulcanize/node_modules/update-notifier/node_modules/configstore/node_modules/js-yaml/lib/js-yaml/schema/default_safe.js
|
| new file mode 100644
|
| index 0000000000000000000000000000000000000000..11d89bbfbba45e201dbe3d2285917a5125b58614
|
| --- /dev/null
|
| +++ b/node_modules/vulcanize/node_modules/update-notifier/node_modules/configstore/node_modules/js-yaml/lib/js-yaml/schema/default_safe.js
|
| @@ -0,0 +1,28 @@
|
| +// 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';
|
| +
|
| +
|
| +var Schema = require('../schema');
|
| +
|
| +
|
| +module.exports = new Schema({
|
| + include: [
|
| + require('./core')
|
| + ],
|
| + implicit: [
|
| + require('../type/timestamp'),
|
| + require('../type/merge')
|
| + ],
|
| + explicit: [
|
| + require('../type/binary'),
|
| + require('../type/omap'),
|
| + require('../type/pairs'),
|
| + require('../type/set')
|
| + ]
|
| +});
|
|
|