You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

11 lines
214 B

1 month ago
  1. 'use strict';
  2. var $isNaN = require('./isNaN');
  3. /** @type {import('./sign')} */
  4. module.exports = function sign(number) {
  5. if ($isNaN(number) || number === 0) {
  6. return number;
  7. }
  8. return number < 0 ? -1 : +1;
  9. };