_to-integer.js 158 B

123456
  1. // 7.1.4 ToInteger
  2. var ceil = Math.ceil
  3. , floor = Math.floor;
  4. module.exports = function(it){
  5. return isNaN(it = +it) ? 0 : (it > 0 ? floor : ceil)(it);
  6. };