We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
const removeSpecialChar = /[^a-zA-Z\d ]/g const replaceSpace = /\s/g const onlyAlpha = (fileName ? fileName : title).replaceAll(removeSpecialChar, '') const strippedFName = onlyAlpha.replaceAll(replaceSpace, '_')
There was an error while loading. Please reload this page.