const digitize = n => [...`${n}`].map(i => parseInt(i)); module.exports = digitize;