RunKit + npm: hashids

node v10.24.1
endpointsharetweet
var Hashids = require('hashids'); var hashids = new Hashids(); var results = [] for (let i = 0; i < 256; i++) { results.push(hashids.encode(i)) } results.sort()
Created from: https://npm.runkit.com/hashids
Loading…