All Downloads are FREE. Search and download functionalities are using the official Maven repository.

node_modules.core-js.modules._to-integer.js Maven / Gradle / Ivy

There is a newer version: 1.1.2
Show newest version
// 7.1.4 ToInteger
var ceil = Math.ceil;
var floor = Math.floor;
module.exports = function (it) {
  return isNaN(it = +it) ? 0 : (it > 0 ? floor : ceil)(it);
};




© 2015 - 2024 Weber Informatics LLC | Privacy Policy