UNPKG

phpjs

Version:

php.js offers community built php functions in javascript

8 lines (7 loc) 195 B
function ceil(value) { // discuss at: http://phpjs.org/functions/ceil/ // original by: Onno Marsman // example 1: ceil(8723321.4); // returns 1: 8723322 return Math.ceil(value); }