mirror of
https://github.com/bitcoinresearchkit/brk.git
synced 2026-06-10 15:03:32 -07:00
7 lines
157 B
JavaScript
7 lines
157 B
JavaScript
import { createId } from "../utils/id.js";
|
|
|
|
/** @param {readonly string[]} path */
|
|
export function createPathId(path) {
|
|
return createId(path.join(" "));
|
|
}
|