parent
4b98992257
commit
ab11f206d8
12 changed files with 58 additions and 23 deletions
12
src/lib/strings/display-names.ts
Normal file
12
src/lib/strings/display-names.ts
Normal file
|
@ -0,0 +1,12 @@
|
|||
// \u2705 = ✅
|
||||
// \u2713 = ✓
|
||||
// \u2714 = ✔
|
||||
// \u2611 = ☑
|
||||
const CHECK_MARKS_RE = /[\u2705\u2713\u2714\u2611]/gu
|
||||
|
||||
export function sanitizeDisplayName(str: string): string {
|
||||
if (typeof str === 'string') {
|
||||
return str.replace(CHECK_MARKS_RE, '')
|
||||
}
|
||||
return ''
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue