Update .bashrc
[dotfiles/.git] / .config / coc / extensions / node_modules / coc-prettier / node_modules / core-js / modules / es.parse-int.js
index b462541afb376228b696bbb0dc45fc8871274bcc..32b8c140a7255841393da4abeb6eff54a2717e47 100644 (file)
@@ -1,8 +1,8 @@
 var $ = require('../internals/export');
-var parseIntImplementation = require('../internals/number-parse-int');
+var $parseInt = require('../internals/number-parse-int');
 
 // `parseInt` method
-// https://tc39.github.io/ecma262/#sec-parseint-string-radix
-$({ global: true, forced: parseInt != parseIntImplementation }, {
-  parseInt: parseIntImplementation
+// https://tc39.es/ecma262/#sec-parseint-string-radix
+$({ global: true, forced: parseInt != $parseInt }, {
+  parseInt: $parseInt
 });