github-pages-deploy-action/node_modules/core-js-pure/internals/to-integer.js

9 lines
256 B
JavaScript
Raw Normal View History

2020-03-07 11:45:40 +08:00
var ceil = Math.ceil;
var floor = Math.floor;
// `ToInteger` abstract operation
// https://tc39.github.io/ecma262/#sec-tointeger
module.exports = function (argument) {
return isNaN(argument = +argument) ? 0 : (argument > 0 ? floor : ceil)(argument);
};