From bbff7403fbf46f9ad92240ac213df8d30ef31b64 Mon Sep 17 00:00:00 2001 From: Florian Dold Date: Thu, 20 Sep 2018 02:56:13 +0200 Subject: update packages --- node_modules/es6-map/is-map.js | 12 ------------ 1 file changed, 12 deletions(-) delete mode 100644 node_modules/es6-map/is-map.js (limited to 'node_modules/es6-map/is-map.js') diff --git a/node_modules/es6-map/is-map.js b/node_modules/es6-map/is-map.js deleted file mode 100644 index 1e1fa8233..000000000 --- a/node_modules/es6-map/is-map.js +++ /dev/null @@ -1,12 +0,0 @@ -'use strict'; - -var toStringTagSymbol = require('es6-symbol').toStringTag - - , toString = Object.prototype.toString - , id = '[object Map]' - , Global = (typeof Map === 'undefined') ? null : Map; - -module.exports = function (x) { - return (x && ((Global && ((x instanceof Global) || (x === Global.prototype))) || - (toString.call(x) === id) || (x[toStringTagSymbol] === 'Map'))) || false; -}; -- cgit v1.2.3