function decodeTimeView codedecodeTime(id: string): numberExtracts the timestamp given a ULID. ExamplesExample 1 import { ulid, decodeTime } from "@std/ulid"; const x = ulid(150000); decodeTime(x); // 150000 Parametersid: stringView codeReturn TypenumberView code