PageRenderTime 61ms CodeModel.GetById 37ms RepoModel.GetById 0ms app.codeStats 0ms

/src/php/math/ceil.js

http://github.com/kvz/phpjs
JavaScript | 8 lines | 3 code | 1 blank | 4 comment | 0 complexity | 7b2673e7d139857323eeb6ee5cf70d08 MD5 | raw file
  1. module.exports = function ceil (value) {
  2. // discuss at: https://locutus.io/php/ceil/
  3. // original by: Onno Marsman (https://twitter.com/onnomarsman)
  4. // example 1: ceil(8723321.4)
  5. // returns 1: 8723322
  6. return Math.ceil(value)
  7. }