2.0.0 • Published 7 years ago

recursive-unescape v2.0.0

Weekly downloads
9
License
ISC
Repository
github
Last release
7 years ago

Recursively UnEscape Objects/Arrays for HTML

Install:

$ npm install --save recursive-unescape

Recursivly unescapes strings in objects or arrays which were escaped for output in HTML. The most common use case for this is to process data that was passed from a server rendered app. See recursive-escape for use on the server when escaping the data.

Usage:

var unescape = require('recursive-unescape');

var obj = {
	"foo": "My unsafe <script>alert("You have been hacked!!");</script> string.",
	"number": 1,
	"arr": [
		"foo",
		"<h1>Hi!!</h1>"
	],
	"obj": {
		"nested": {
			"bar": "<"
		}
	}
};

var e = unescape(obj);

console.log(e.toJSON(e, '\t'));
/*
Output:

{
	foo: 'My unsafe <script>alert("You have been hacked!!");</script> string.',
	number: 1,
	arr: ['foo', '<h1>Hi!!</h1>'],
	obj: {
		nested: {
			bar: '<'
		}
	}
}
*/