Show More
Commit Description:
fix wrong merge
Commit Description:
fix wrong merge
References:
File last commit:
Show/Diff file:
Action:
node_modules/core-js/modules/_parse-float.js
| 8 lines
| 359 B
| application/javascript
| JavascriptLexer
|
r789 | var $parseFloat = require('./_global').parseFloat; | |||
var $trim = require('./_string-trim').trim; | ||||
module.exports = 1 / $parseFloat(require('./_string-ws') + '-0') !== -Infinity ? function parseFloat(str) { | ||||
var string = $trim(String(str), 3); | ||||
var result = $parseFloat(string); | ||||
return result === 0 && string.charAt(0) == '-' ? -0 : result; | ||||
} : $parseFloat; | ||||