Files
brk/website_next/learn/path.js
T
2026-06-07 00:54:50 +02:00

7 lines
157 B
JavaScript

import { createId } from "../utils/id.js";
/** @param {readonly string[]} path */
export function createPathId(path) {
return createId(path.join(" "));
}