diff options
Diffstat (limited to 'node_modules/lru-cache/index.js')
-rw-r--r-- | node_modules/lru-cache/index.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/node_modules/lru-cache/index.js b/node_modules/lru-cache/index.js index 460462aad..3f047f8ca 100644 --- a/node_modules/lru-cache/index.js +++ b/node_modules/lru-cache/index.js @@ -15,7 +15,7 @@ var hasSymbol = typeof Symbol === 'function' var makeSymbol if (hasSymbol) { makeSymbol = function (key) { - return Symbol.for(key) + return Symbol(key) } } else { makeSymbol = function (key) { |