auth-api/tests/node_modules/es-abstract/helpers/sign.js

6 lines
89 B
JavaScript
Raw Normal View History

2021-06-23 22:30:45 +02:00
'use strict';
module.exports = function sign(number) {
return number >= 0 ? 1 : -1;
};