We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4defa05 commit cb12c9eCopy full SHA for cb12c9e
html-entity-parser/index.ts
@@ -1,5 +1,5 @@
1
/**https://leetcode-cn.com/problems/html-entity-parser/*/
2
-export default function entityParser(text: string): string {
+export default function htmlEntityParser(text: string): string {
3
return text.replace(entityRegExp, replacer);
4
}
5
const replacer = (a: string) => {
0 commit comments