From 5f466137ad6ac596600e3ff53c9b786815398445 Mon Sep 17 00:00:00 2001 From: Florian Dold Date: Sat, 27 May 2017 17:36:13 +0200 Subject: node_modules, clean up package.json --- node_modules/core-js/modules/$.classof.js | 16 ---------------- 1 file changed, 16 deletions(-) delete mode 100644 node_modules/core-js/modules/$.classof.js (limited to 'node_modules/core-js/modules/$.classof.js') diff --git a/node_modules/core-js/modules/$.classof.js b/node_modules/core-js/modules/$.classof.js deleted file mode 100644 index 905c61f7a..000000000 --- a/node_modules/core-js/modules/$.classof.js +++ /dev/null @@ -1,16 +0,0 @@ -// getting tag from 19.1.3.6 Object.prototype.toString() -var cof = require('./$.cof') - , TAG = require('./$.wks')('toStringTag') - // ES3 wrong here - , ARG = cof(function(){ return arguments; }()) == 'Arguments'; - -module.exports = function(it){ - var O, T, B; - return it === undefined ? 'Undefined' : it === null ? 'Null' - // @@toStringTag case - : typeof (T = (O = Object(it))[TAG]) == 'string' ? T - // builtinTag case - : ARG ? cof(O) - // ES3 arguments fallback - : (B = cof(O)) == 'Object' && typeof O.callee == 'function' ? 'Arguments' : B; -}; \ No newline at end of file -- cgit v1.2.3