GT2/Ejectable/node_modules/core-js/modules/es6.math.trunc.js

8 lines
180 B
JavaScript
Raw Normal View History

2021-08-16 00:14:59 +00:00
// 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);
}
});