UNPKG

@aws/pdk

Version:

All documentation is located at: https://aws.github.io/aws-pdk

12 lines (9 loc) 214 B
'use strict'; var $isNaN = require('./isNaN'); /** @type {import('./sign')} */ module.exports = function sign(number) { if ($isNaN(number) || number === 0) { return number; } return number < 0 ? -1 : +1; };