Sign in
apache
/
nifi-fds
/
gh-pages
/
.
/
node_modules
/
core-js
/
library
/
modules
/
_to-integer.js
blob: 3d50f97dd80ac988356e1da1af91b2e9fcd44ac6 [
file
]
// 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
);
};