Show More
Commit Description:
fix wrong merge
Commit Description:
fix wrong merge
References:
File last commit:
Show/Diff file:
Action:
node_modules/es5-ext/number/#/pad.js
| 16 lines
| 405 B
| application/javascript
| JavascriptLexer
|
r789 | "use strict"; | |||
var pad = require("../../string/#/pad") | ||||
, toPosInt = require("../to-pos-integer") | ||||
, toFixed = Number.prototype.toFixed; | ||||
module.exports = function (length/*, precision*/) { | ||||
var precision; | ||||
length = toPosInt(length); | ||||
precision = toPosInt(arguments[1]); | ||||
return pad.call( | ||||
precision ? toFixed.call(this, precision) : this, "0", | ||||
length + (precision ? 1 + precision : 0) | ||||
); | ||||
}; | ||||