Skip to content

Commit

Permalink
fix: runkit still using old function instance
Browse files Browse the repository at this point in the history
  • Loading branch information
jeanlescure committed Sep 5, 2023
1 parent 68ba62a commit f27725e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion runkit.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ const ShortUniqueId = require('short-unique-id');

const uid = new ShortUniqueId();

console.log(uid(6));
console.log(uid.rnd(6));
console.log(uid.seq());

const uidWithTimestamp = uid.stamp(32);
Expand Down

0 comments on commit f27725e

Please sign in to comment.