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-set/is-native-implemented.js | 9 --------- 1 file changed, 9 deletions(-) delete mode 100644 node_modules/es6-set/is-native-implemented.js (limited to 'node_modules/es6-set/is-native-implemented.js') diff --git a/node_modules/es6-set/is-native-implemented.js b/node_modules/es6-set/is-native-implemented.js deleted file mode 100644 index e8b0160ec..000000000 --- a/node_modules/es6-set/is-native-implemented.js +++ /dev/null @@ -1,9 +0,0 @@ -// Exports true if environment provides native `Set` implementation, -// whatever that is. - -'use strict'; - -module.exports = (function () { - if (typeof Set === 'undefined') return false; - return (Object.prototype.toString.call(Set.prototype) === '[object Set]'); -}()); -- cgit v1.2.3