diff options
Diffstat (limited to 'node_modules/es6-map/valid-map.js')
-rw-r--r-- | node_modules/es6-map/valid-map.js | 8 |
1 files changed, 0 insertions, 8 deletions
diff --git a/node_modules/es6-map/valid-map.js b/node_modules/es6-map/valid-map.js deleted file mode 100644 index e2aca87a4..000000000 --- a/node_modules/es6-map/valid-map.js +++ /dev/null @@ -1,8 +0,0 @@ -'use strict'; - -var isMap = require('./is-map'); - -module.exports = function (x) { - if (!isMap(x)) throw new TypeError(x + " is not a Map"); - return x; -}; |