mirror of
https://github.com/pavlobu/deskreen.git
synced 2025-05-18 16:30:10 -07:00
5 lines
143 B
TypeScript
5 lines
143 B
TypeScript
// eslint-disable-next-line import/prefer-default-export
|
|
export function sanitize(str: string) {
|
|
return str.replace(/[^A-Za-z0-9]/g, '-');
|
|
}
|