Converts Arabic numerals to Geez.
npm install geezer --save
const geezer = require('geezer');
geezer(1); // '፩'
geezer('100'); // '፻'
geezer('111111'); // '፲፩፼፲፩፻፲፩'
geezer('0'); // '0'
geezer('Invalid'); // 'Invalid'
As with Geez, zero and decimals are not supported. If an invalid number is passed, the number itself is returned.