debian-mirror-gitlab/core-js/modules/es.parse-int.js
2019-09-25 13:30:05 +05:30

9 lines
292 B
JavaScript

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
});