Add production dependencies
This commit is contained in:
parent
5a0114f3e2
commit
579ccdc29f
12113 changed files with 978046 additions and 3 deletions
8
node_modules/es6-weak-map/is-native-implemented.js
generated
vendored
Normal file
8
node_modules/es6-weak-map/is-native-implemented.js
generated
vendored
Normal file
|
@ -0,0 +1,8 @@
|
|||
// Exports true if environment provides native `WeakMap` implementation, whatever that is.
|
||||
|
||||
"use strict";
|
||||
|
||||
module.exports = (function () {
|
||||
if (typeof WeakMap !== "function") return false;
|
||||
return Object.prototype.toString.call(new WeakMap()) === "[object WeakMap]";
|
||||
}());
|
Loading…
Add table
Add a link
Reference in a new issue