Simple lib to crypt/decrypt numbers.
npm install @saipos/saipos-number-cipherJS lib to encrypt / decrypt numbers based on a provided dictionary
``js
const cipher = new saiposNumberCipher('abcdefghij')
cipher.encrypt(10)// returns ba
`
`js
const cipher = new saiposNumberCipher('abcdefghij')
cipher.decrypt('ba')// returns 10
``