1 2 3 4 5 6 7 8 9 10 11
"use strict"; module.exports = function floor(value) { // discuss at: http://locutus.io/php/floor/ // original by: Onno Marsman (https://twitter.com/onnomarsman) // example 1: floor(8723321.4) // returns 1: 8723321 return Math.floor(value); }; //# sourceMappingURL=floor.js.map