2017-06-08_509bba0/509bba0_unpacked_with_node_modules/~/core-js/modules/_to-integer.js

13 lines
275 B
JavaScript
Raw Permalink Normal View History

2022-07-26 17:06:20 +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);
};
//////////////////
// WEBPACK FOOTER
// ./~/core-js/modules/_to-integer.js
// module id = 201
// module chunks = 4