node-anyid icon indicating copy to clipboard operation
node-anyid copied to clipboard

A simple and flexible API to generate various kinds of string ID / code.

Results 3 node-anyid issues
Sort by recently updated
recently updated
newest added

``` const ids = anyid() .encode('h').form('8-4-4-4-12') .bits(48).time() .bits(4).fix(4) .bits(12).seq().resetByTime() .bits(2).fix(2) .bits(62).random(); ```

feature

Add encode chartset `H` and `h`, which denote hex encoding.

feature