1.0.0 • Published 7 years ago
@ngard/tiny-unescape v1.0.0
tiny-unescape
A minimal-weight utility equivalent to lodash.unescape. For when every byte counts!
Syntax
unescape(/* string */)Parameters
string - An string to unescape
Return
Replaces escaped HTML characters (&, <, >, ", ') with their unescaped forms (&, <, >, ", ' respectively).
Example
import { unescape } from '@ngard/tiny-unescape';
const value = unescape('&<>"'');
// returns &<>"'1.0.0
7 years ago