8889841chome/clixcotz/mars.clix.co.tz/node_modules/type/integer/coerce.js000066600000000377150437237530021204 0ustar00"use strict"; var coerceToFinite = require("../finite/coerce"); var abs = Math.abs, floor = Math.floor; module.exports = function (value) { value = coerceToFinite(value); if (!value) return value; return (value > 0 ? 1 : -1) * floor(abs(value)); };