UNPKG

vsm-autocomplete

Version:

Vue-component for term+ID lookup based on a vsm-dictionary

8 lines (7 loc) 246 B
/** * Protects a string that will be used literally in `v-html` props, * against <script> and other injection attacks. */ export default function sanitizeHtml(str) { return str.replace(/<(\s*(script|iframe|style|textarea)\W)/g, '&lt;$1'); }