debian-mirror-gitlab/core-js/modules/es.parse-int.js

9 lines
292 B
JavaScript
Raw Normal View History

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