UNPKG

dg-npm-templates

Version:

Npx generator for react app dependency creation by digite

13 lines (10 loc) 293 B
import DOMPurify from 'dompurify' export const getSanitizeData = a_inputString => { const config = { ALLOWED_TAGS: [], RETURN_DOM: false, USE_PROFILES: {html: false}, ALLOW_DATA_ATTR: false }; return DOMPurify.sanitize(a_inputString, config); }