UNPKG

ranui

Version:

A framework-agnostic Web Components UI library built on native custom elements, with TypeScript types, light/dark theming, SSR and PWA support.

8 lines (7 loc) 348 B
import { escapeHtml } from 'ranuts/utils'; export { escapeHtml }; /** * 属性值转义。当前与 `escapeHtml` 完全一致:单双引号都会被转义,所以带引号、 * 不带引号的属性值都安全。保留独立的名字是为了在调用点标出意图。 */ export declare function escapeHtmlAttribute(unsafe: string): string;