0.1.2 • Published 7 years ago
@regexp-extra/unescape v0.1.2
Unescape string for readability.
const unescape = require('@regexp-extra/unescape');
// unescape(<string>)
// -> unescaped string
unescape('Hello\\.');
// Hello.
unescape('\\$ is \\u{5E}\\56');
// $ is ^.
credits: taken directly from iamakulov/unescape-js.