npm.io
0.2.0 • Published 11 years ago

whatisin

Licence
MIT
Version
0.2.0
Deps
0
Vulns
0
Weekly
0
Stars
1

whatIsIn.js

A minimal function to return a string of the recursive representation of an object.

Installation

npm install whatisin

Usage

On servers(node), you can just require to use the function.

var whatIsIn = require('whatisin');
console.log(whatIsIn(someVeryComplicatedObject));

On web browsers, including whatIsIn.js should add it to the global window object (untested).

<script src="/path/to/whatIsIn.js"></script>
<script>
alert(whatIsIn(someVeryComplicatedObject));
</script>

Caveats

For now, this function does not support detecting cyclic references. Coming soon :).

Keywords