bun-types
Version:
Type definitions and documentation for Bun, an incredibly fast JavaScript runtime
23 lines (16 loc) • 613 B
Markdown
name: Escape an HTML string
The `Bun.escapeHTML()` utility can be used to escape HTML characters in a string. The following replacements are made.
- `"` becomes `"""`
- `&` becomes `"&"`
- `'` becomes `"'"`
- `<` becomes `"<"`
- `>` becomes `">"`
This function is optimized for large input. Non-string types will be converted to a string before escaping.
```ts
Bun.escapeHTML("<script>alert('Hello World!')</script>");
// <script>alert('Hello World!')</script>
```
See [Docs > API > Utils](https://bun.sh/docs/api/utils) for more useful utilities.