1.0.1 • Published 8 years ago
signage v1.0.1
Signage
Convert your generic "numbers" to signed / unsigned shorts, as done by statically typed languages such as C#.
This module really helps if (like me) you find yourself converting code from said statically typed languages to JavaScript.
For example, signage.short() will turn:
1to1:)32768to-3276832769to-32767
signage.short.unsigned() will turn:
1to1-1to165536to0-65536to065537to1-65537to1
Implementation
npm install signage
...
const signage = require('signage');
signage.short(32769); // -32767Happy coding!