UNPKG

phpjs

Version:

php.js offers community built php functions in javascript

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