some deletions
[dotfiles/.git] / .config / coc / extensions / node_modules / coc-prettier / node_modules / js-yaml / lib / js-yaml / schema / default_full.js
diff --git a/.config/coc/extensions/node_modules/coc-prettier/node_modules/js-yaml/lib/js-yaml/schema/default_full.js b/.config/coc/extensions/node_modules/coc-prettier/node_modules/js-yaml/lib/js-yaml/schema/default_full.js
deleted file mode 100644 (file)
index a55ef42..0000000
+++ /dev/null
@@ -1,25 +0,0 @@
-// JS-YAML's default schema for `load` function.
-// It is not described in the YAML specification.
-//
-// This schema is based on JS-YAML's default safe schema and includes
-// JavaScript-specific types: !!js/undefined, !!js/regexp and !!js/function.
-//
-// Also this schema is used as default base schema at `Schema.create` function.
-
-
-'use strict';
-
-
-var Schema = require('../schema');
-
-
-module.exports = Schema.DEFAULT = new Schema({
-  include: [
-    require('./default_safe')
-  ],
-  explicit: [
-    require('../type/js/undefined'),
-    require('../type/js/regexp'),
-    require('../type/js/function')
-  ]
-});