astro-ghostcms/.pnpm-store/v3/files/b1/9cbf784539c8597493dc40d4f07...

6 lines
89 B
Plaintext

'use strict';
module.exports = function sign(number) {
return number >= 0 ? 1 : -1;
};