mirror of
https://github.com/idanoo/GoScrobble.git
synced 2024-11-23 00:45:16 +00:00
9 lines
292 B
JavaScript
9 lines
292 B
JavaScript
|
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
|
||
|
});
|