christian 4571a14169 android fix | 3 år sedan | |
---|---|---|
.. | ||
index.d.ts | 3 år sedan | |
index.js | 3 år sedan | |
license | 3 år sedan | |
package.json | 3 år sedan | |
readme.md | 3 år sedan |
Escape a string for use in HTML or the inverse
$ npm install escape-goat
const {htmlEscape, htmlUnescape, htmlEscapeTag, htmlUnescapeTag} = require('escape-goat');
htmlEscape('🦄 & 🐐');
//=> '🦄 & 🐐'
htmlUnescape('🦄 & 🐐');
//=> '🦄 & 🐐'
htmlEscape('Hello <em>World</em>');
//=> 'Hello <em>World</em>'
const url = 'https://sindresorhus.com?x="🦄"';
htmlEscapeTag`<a href="${url}">Unicorn</a>`;
//=> '<a href="https://sindresorhus.com?x="🦄"">Unicorn</a>'
const escapedUrl = 'https://sindresorhus.com?x="🦄"';
htmlUnescapeTag`URL from HTML: ${url}`;
//=> 'URL from HTML: https://sindresorhus.com?x="🦄"'
Escapes the following characters in the given string
argument: &
<
>
"
'
Unescapes the following HTML entities in the given htmlString
argument: &
<
>
"
'
Tagged template literal that escapes interpolated values.
Tagged template literal that unescapes interpolated values.
Ensure you always quote your HTML attributes to prevent possible XSS.
I couldn’t find one I liked that was tiny, well-tested, and had both .escape()
and .unescape()
.
MIT © Sindre Sorhus