• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1module.exports = function sign(number) {
2	return number >= 0 ? 1 : -1;
3};
4