mirror of
https://github.com/stashapp/Stash-Docs.git
synced 2025-12-12 18:11:57 -06:00
Co-authored-by: feederbox826 <feederbox826@users.noreply.github.com> Co-authored-by: DogmaDragon <103123951+DogmaDragon@users.noreply.github.com>
5 lines
359 B
TypeScript
5 lines
359 B
TypeScript
// utility functions for the builder
|
|
export const sanitizeMD = (md: string) => md.replace("<", "<").replace(">", ">")
|
|
export const infoLog = (message: string) => console.log(`[INFO] ${message}`)
|
|
export const warnLog = (message: string) => console.warn(`[WARN] ${message}`)
|
|
export const debugLog = (message: string) => console.debug(`[DEBUG] ${message}`) |