1.0.0 • Published 5 years ago

@ngard/tiny-unescape v1.0.0

Weekly downloads
1
License
MIT
Repository
github
Last release
5 years ago

tiny-unescape

source bundle size build status license

A minimal-weight utility equivalent to lodash.unescape. For when every byte counts!

lodash.unescape bundle size tiny-unescape bundle size

Syntax

unescape(/* string */)

Parameters

string - An string to unescape

Return

Replaces escaped HTML characters (&amp;, &lt;, &gt;, &quot;, &#39;) with their unescaped forms (&, <, >, ", ' respectively).

Example

import { unescape } from '@ngard/tiny-unescape';

const value = unescape('&amp;&lt;&gt;&quot;&#39;');
// returns &<>"'