UNPKG

@unclepaul/allcountjs

Version:

The open source framework for rapid business application development with Node.js

13 lines (9 loc) 294 B
import absFloor from './abs-floor'; export default function toInt(argumentForCoercion) { var coercedNumber = +argumentForCoercion, value = 0; if (coercedNumber !== 0 && isFinite(coercedNumber)) { value = absFloor(coercedNumber); } return value; }