Your IP : 216.73.216.175


Current Path : /home/kamilrogam/komp/2018/180513/DARWIN/EDU/gulp/1/node_modules/es5-ext/math/sign/
Upload File :
Current File : /home/kamilrogam/komp/2018/180513/DARWIN/EDU/gulp/1/node_modules/es5-ext/math/sign/shim.js

"use strict";

module.exports = function (value) {
	value = Number(value);
	if (isNaN(value) || (value === 0)) return value;
	return value > 0 ? 1 : -1;
};