Skip to main content
Deno 2 is finally here 🎉️
Learn more
Module

std/ulid/mod.ts>decodeTime

The Deno Standard Library
Go to Latest
The Standard Library has been moved to JSR. See the blog post for details.
function decodeTime
import { decodeTime } from "https://deno.land/std@0.223.0/ulid/mod.ts";

Extracts the timestamp given a ULID.

Examples

Example 1

import { ulid, decodeTime } from "https://deno.land/std@0.223.0/ulid/mod.ts";

const x = ulid(150000);
decodeTime(x); // 150000

Parameters

id: string

Returns

number