UNPKG

302 BJavaScriptView Raw
1var $ = require('../internals/export');
2var parseFloatImplementation = require('../internals/number-parse-float');
3
4// `parseFloat` method
5// https://tc39.es/ecma262/#sec-parsefloat-string
6$({ global: true, forced: parseFloat != parseFloatImplementation }, {
7 parseFloat: parseFloatImplementation
8});