mirror of
https://github.com/denoland/std.git
synced 2024-11-21 20:50:22 +00:00
bfa56fce2d
Co-authored-by: Asher Gomez <ashersaupingomez@gmail.com> Co-authored-by: Yoshiya Hinosawa <stibium121@gmail.com>
20 lines
532 B
TypeScript
20 lines
532 B
TypeScript
// Copyright 2018-2024 the Deno authors. All rights reserved. MIT license.
|
|
// This module is browser compatible.
|
|
|
|
/**
|
|
* Functions for HTML tasks such as escaping or unescaping HTML entities.
|
|
*
|
|
* ```ts
|
|
* import { unescape } from "@std/html/entities";
|
|
* import { assertEquals } from "@std/assert";
|
|
*
|
|
* assertEquals(unescape("<>'&AA"), "<>'&AA");
|
|
* assertEquals(unescape("þð"), "þð");
|
|
* ```
|
|
*
|
|
* @module
|
|
*/
|
|
|
|
export * from "./entities.ts";
|
|
export * from "./is_valid_custom_element_name.ts";
|