Projekt

Obecné

Profil

Stáhnout (89 Bajtů) Statistiky
| Větev: | Revize:
1
'use strict';
2

    
3
module.exports = function sign(number) {
4
	return number >= 0 ? 1 : -1;
5
};
(25-25/26)