UNPKG

phpjs

Version:

php.js offers community built php functions in javascript

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