Devendra174's picture
Upload folder using huggingface_hub
1e92f2d verified
import stripTags from 'striptags';
/**
* Strips HTML from a string. Does not handle tags nested in attribute strings.
* @param {string} string The string to strip tags from
* @returns {string} The stripped string
*/
export function stripHTML( string ) {
return stripTags( string );
}