Submit
Path:
~
/
/
usr
/
local
/
lib
/
node_modules
/
npm
/
node_modules
/
cli-table2
/
node_modules
/
lodash
/
math
/
File Content:
ceil.js
var createRound = require('../internal/createRound'); /** * Calculates `n` rounded up to `precision`. * * @static * @memberOf _ * @category Math * @param {number} n The number to round up. * @param {number} [precision=0] The precision to round up to. * @returns {number} Returns the rounded up number. * @example * * _.ceil(4.006); * // => 5 * * _.ceil(6.004, 2); * // => 6.01 * * _.ceil(6040, -2); * // => 6100 */ var ceil = createRound('ceil'); module.exports = ceil;
Submit
FILE
FOLDER
Name
Size
Permission
Action
add.js
358 bytes
0644
ceil.js
491 bytes
0644
floor.js
505 bytes
0644
max.js
1843 bytes
0644
min.js
1845 bytes
0644
round.js
485 bytes
0644
sum.js
1346 bytes
0644
N4ST4R_ID | Naxtarrr