UNPKG

signum

Version:
7 lines (6 loc) 117 B
"use strict" module.exports = function signum(x) { if(x < 0) { return -1 } if(x > 0) { return 1 } return 0.0 }