projecte_ionic/node_modules/core-js/modules/es.parse-int.js
2022-02-09 18:30:03 +01:00

8 lines
292 B
JavaScript
Executable file

var $ = require('../internals/export');
var parseIntImplementation = require('../internals/number-parse-int');
// `parseInt` method
// https://tc39.es/ecma262/#sec-parseint-string-radix
$({ global: true, forced: parseInt != parseIntImplementation }, {
parseInt: parseIntImplementation
});