mirror of
https://github.com/photonstorm/phaser
synced 2025-01-25 19:35:15 +00:00
6 lines
230 B
JavaScript
6 lines
230 B
JavaScript
// ES6 Math.trunc - https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Math/trunc
|
|
if (!Math.trunc) {
|
|
Math.trunc = function trunc(x) {
|
|
return x < 0 ? Math.ceil(x) : Math.floor(x);
|
|
};
|
|
}
|