Numeric and symbolic sequence generator, with iterators and utf16 support
npm install sqncUtility for numeric or symbolic seqence generation. Specify range of values, step or custom function to create array with seqence
#### Install as npm package
``shell`
npm i sqnc --save
#### Or simply download \*.js file
#### Or just load from CDN
`html`
And then use sqnc as global variable
`html`Documentation
Run example with runkit
`js
const sqnc = require("sqnc");
console.log(sqnc("A", "Z").toArray()); // Alphabet
console.log(sqnc("👶", "👰").toArray()); // Some emojis
console.log(sqnc(25, 0, 5).toArray()); // From 25 to 0 with step 5
console.log(sqnc("☠").toArray(5)); // Make Array(5) of Skull and bones symbol
``