polyfills.Math.trunc.raw.js Maven / Gradle / Ivy
The newest version!
// Math.trunc
Math.trunc = function trunc(x) {
return x < 0 ? Math.ceil(x) : Math.floor(x);
};
// Math.trunc
Math.trunc = function trunc(x) {
return x < 0 ? Math.ceil(x) : Math.floor(x);
};