mirror of
https://github.com/bitcoinresearchkit/brk.git
synced 2026-06-11 07:23:32 -07:00
5 lines
116 B
JavaScript
5 lines
116 B
JavaScript
/** @param {string} value */
|
|
export function createId(value) {
|
|
return value.toLowerCase().replaceAll(" ", "-");
|
|
}
|