PageRenderTime 45ms CodeModel.GetById 19ms RepoModel.GetById 0ms app.codeStats 0ms

/src/php/math/ceil.js

https://github.com/andriuspetrauskis/phpjs
JavaScript | 8 lines | 3 code | 1 blank | 4 comment | 0 complexity | fc038ad51f6b3c7eaba9ab4e2166d805 MD5 | raw file
  1. module.exports = function ceil (value) {
  2. // discuss at: http://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. }