Skip to main content
Module

std/ulid/mod.ts>decodeTime

Deno standard library
Go to Latest
function decodeTime
import { decodeTime } from "https://deno.land/std@0.210.0/ulid/mod.ts";

Extracts the timestamp given a ULID.

Examples

Example 1

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

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

Parameters

id: string

Returns

number