GT2/Ejectable/node_modules/core-js/modules/es6.math.trunc.js
2021-08-16 00:14:59 +00:00

8 lines
No EOL
180 B
JavaScript

// 20.2.2.34 Math.trunc(x)
var $export = require('./$.export');
$export($export.S, 'Math', {
trunc: function trunc(it){
return (it > 0 ? Math.floor : Math.ceil)(it);
}
});