f63baaff88295022a8c52895527d8b3a2523ad6f
[yaffs-website] / _to-integer.js
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 };