javascript
javascript copied to clipboard
feat: export min and max values for ULID
Exports new constants MIN_ULID and MAX_ULID. These can be useful when doing range queries to look for valid ULIDs, eg
id > `${ULID.MIN_ULID} AND id < `${ULID.MAX_ULID}
@j0pgrm Mind reviewing? Hopefully this is beneficial to the library.