JavaScript — How to Check if a Value is a ULID
We’re using Universally Unique Lexicographically Sortable Identifier (ULID) in our projects to identify entities. ULIDs are unique, sortable identifiers similar to UUIDs. The claim that ULIDs are better than UUIDs is that they are sortable, keeping a monotonic sort order, encoded as a 26-character string (36 characters for UUIDs) …
Continue Reading