An open API service indexing awesome lists of open source software.

https://github.com/lwdgit/sanitize-js-object

Make js object getter more safely.
https://github.com/lwdgit/sanitize-js-object

Last synced: 8 days ago
JSON representation

Make js object getter more safely.

Awesome Lists containing this project

README

          

# sanitize-js-object

Make js object getter safer.

Eg:

var z = console.log(window.a.b.c.d)

Output:

var z = console.log(((((window || {}).a || {}).b || {}).c || {}).d)