i try to check if i change some value still i will get result or not
for example
const sqids = new Sqids({
alphabet: 'abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789',
minLength:11
});
// the problem is when i change value from 'UkLWZg9DAJQ' to akLWZg9DAJQ still i will get value
sqids.decode('akLWZg9DAJQ')=>[368240725753862300]
BUT when i try it akLWZg9DAJQ with playground,"https://sqids.org/playground" it's give me Error: Invalid ID how can i do like playground
i try to check if i change some value still i will get result or not for example const sqids = new Sqids({ alphabet: 'abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789', minLength:11 });
// encode sqids.encode([1]) 'UkLWZg9DAJQ' // decode sqids.decode('UkLWZg9DAJQ')
// the problem is when i change value from 'UkLWZg9DAJQ' to akLWZg9DAJQ still i will get value sqids.decode('akLWZg9DAJQ')=>[368240725753862300] BUT when i try it akLWZg9DAJQ with playground,"https://sqids.org/playground" it's give me Error: Invalid ID how can i do like playground