Mario Romano 29df96a085 react app
2016-04-06 17:52:19 +01:00

8 lines
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);
}
});