import { INVALID_CHARS } from './constants.js'; export function sanitizeName(name: string) { return name.replace(INVALID_CHARS, '-'); }