function newId()

in netlify/functions/link.ts [11:17]


function newId(count: number): string {
	let s: string = "";
	for (let i = 0; i < count; i++) {
		s += LINK_CHARS[Math.floor(Math.random() * LINK_CHARS.length)];
	}
	return s;
}