HOME


sh-3ll 1.0
DIR:/proc/self/cwd/bright.medisavehealthcarebd.com/node_modules/type/integer/
Upload File :
Current File : //proc/self/cwd/bright.medisavehealthcarebd.com/node_modules/type/integer/coerce.js
"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));
};