projecte_ionic/node_modules/core-js-pure/modules/es.math.trunc.js
2022-02-09 18:30:03 +01:00

13 lines
268 B
JavaScript
Executable file

var $ = require('../internals/export');
var ceil = Math.ceil;
var floor = Math.floor;
// `Math.trunc` method
// https://tc39.es/ecma262/#sec-math.trunc
$({ target: 'Math', stat: true }, {
trunc: function trunc(it) {
return (it > 0 ? floor : ceil)(it);
}
});