mirror of
https://github.com/musix-org/musix-oss
synced 2024-11-14 03:30:18 +00:00
9 lines
256 B
JavaScript
9 lines
256 B
JavaScript
|
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);
|
||
|
};
|