GT2/Ejectable/node_modules/core-js/modules/$.to-integer.js

6 lines
158 B
JavaScript
Raw Normal View History

2021-08-16 00:14:59 +00:00
// 7.1.4 ToInteger
var ceil = Math.ceil
, floor = Math.floor;
module.exports = function(it){
return isNaN(it = +it) ? 0 : (it > 0 ? floor : ceil)(it);
};