mirror of
https://github.com/diced/zipline.git
synced 2026-07-08 20:57:11 -07:00
842dac2660
* fix: advisory * fix: typo
6 lines
100 B
TypeScript
6 lines
100 B
TypeScript
import he from 'he';
|
|
|
|
export function stripHtml(html: string): string {
|
|
return he.encode(html);
|
|
}
|