| 32 | new Duration(input, unit, instance.$l) // eslint-disable-line no-use-before-define |
| 33 | |
| 34 | const prettyUnit = unit => `${$u.p(unit)}s` |
| 35 | const isNegative = number => number < 0 |
| 36 | const roundNumber = number => |
| 37 | (isNegative(number) ? Math.ceil(number) : Math.floor(number)) |
no outgoing calls
no test coverage detected