UNPKG

@wxn0brp/db

Version:

A simple file-based database management system with support for CRUD operations, custom queries, and graph structures.

9 lines (8 loc) 283 B
import Id from "../types/Id.js"; /** * Generates a unique random identifier based on time and parts. * * @param {number[]} [parts] - an array of lengths of parts of the identifier * @returns {Id} - a new unique identifier */ export default function genId(parts?: number[]): Id;