Skip to content

Commit cb12c9e

Browse files
committed
Update index.ts
1 parent 4defa05 commit cb12c9e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

html-entity-parser/index.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/**https://leetcode-cn.com/problems/html-entity-parser/*/
2-
export default function entityParser(text: string): string {
2+
export default function htmlEntityParser(text: string): string {
33
return text.replace(entityRegExp, replacer);
44
}
55
const replacer = (a: string) => {

0 commit comments

Comments
 (0)