Your IP : 216.73.217.13


Current Path : /var/www/fidelitychain/wwwOLD/node_modules/moment/src/lib/utils/
Upload File :
Current File : /var/www/fidelitychain/wwwOLD/node_modules/moment/src/lib/utils/to-int.js

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;
}