debian-mirror-gitlab/core-js/internals/to-integer.js

9 lines
256 B
JavaScript
Raw Normal View History

2019-09-25 13:30:05 +05:30
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);
};