Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.
export default function escapeTaskName(taskName) {
// Regular expression is taken from here: https://stackoverflow.com/a/20053121
return taskName.replace(/[^a-zA-Z0-9,._+@%/-]/gu, '\\$&');
}