tsdoc test
This commit is contained in:
@ -1,3 +1,9 @@
|
||||
/**
|
||||
* removes invalid characters from a string and throws an error
|
||||
* if left with an empty string
|
||||
*
|
||||
* @param name - name to check and transform
|
||||
*/
|
||||
function validate_name (name: string): string {
|
||||
const new_name = name
|
||||
.replace (/[^a-z0-9]/giu, '')
|
||||
|
Reference in New Issue
Block a user