2019-09-25 13:30:05 +05:30
|
|
|
var $ = require('../internals/export');
|
2020-01-12 00:16:45 +05:30
|
|
|
var parseIntImplementation = require('../internals/number-parse-int');
|
2019-09-25 13:30:05 +05:30
|
|
|
|
|
|
|
// `parseInt` method
|
|
|
|
// https://tc39.github.io/ecma262/#sec-parseint-string-radix
|
|
|
|
$({ global: true, forced: parseInt != parseIntImplementation }, {
|
|
|
|
parseInt: parseIntImplementation
|
|
|
|
});
|