UNPKG
webdriverio-automation
Version:
latest (1.0.0)
1.0.0
WebdriverIO-Automation android ios project
webdriverio-automation
/
node_modules
/
moment
/
src
/
lib
/
utils
/
abs-floor.js
9 lines
(8 loc)
•
179 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
export
default
function
absFloor
(
number
) {
if
(
number
<
0
) {
// -0 -> 0
return
Math
.
ceil
(
number
) ||
0
; }
else
{
return
Math
.
floor
(
number
); } }