Files
musix-oss/node_modules/core-js/modules/es.parse-float.js
T
2019-10-10 16:43:04 +03:00

9 lines
302 B
JavaScript

var $ = require('../internals/export');
var parseFloatImplementation = require('../internals/parse-float');
// `parseFloat` method
// https://tc39.github.io/ecma262/#sec-parsefloat-string
$({ global: true, forced: parseFloat != parseFloatImplementation }, {
parseFloat: parseFloatImplementation
});