# whatisin

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

Latest version **0.2.0** (published 2015-02-08) · MIT license · 0 weekly downloads

## Install

```sh
npm install whatisin
pnpm add whatisin
yarn add whatisin
bun add whatisin
```

## Health

**Score 15/100 (F)** — status: abandoned.

Positive: no vulnerabilities.

Warnings: low downloads; no types; no esm support; pre 1.0.

Negative: abandoned; low maintenance score.

## Facts

| | |
|---|---|
| Version | 0.2.0 |
| Published | 2015-02-08 |
| First published | 2015-02-01 |
| Weekly downloads | 0 |
| License | MIT |
| TypeScript types | none |
| Module format | CommonJS |
| Dependencies | 0 |
| Known vulnerabilities | 0 |
| Install scripts | no |
| GitHub stars | 1 |
| Author | Hellyna NG |
| Maintainers | hellyna |
| Keywords | utility, reflection, inspection, debugging |

## Links

- npm: https://www.npmjs.com/package/whatisin
- Repository: https://github.com/Hellyna/whatIsIn.js
- Issues: https://github.com/Hellyna/whatIsIn.js/issues
- npm.io page: https://npm.io/package/whatisin

## Alternatives

- [lodash.assign](https://npm.io/package/lodash.assign.md) — 2.3M weekly downloads
- [lodash.chunk](https://npm.io/package/lodash.chunk.md) — 1.8M weekly downloads
- [react-native-ios-utilities](https://npm.io/package/react-native-ios-utilities.md) — 138.5K weekly downloads
- [@technically/lodash](https://npm.io/package/@technically/lodash.md) — 50.9K weekly downloads
- [@fluid-topics/ft-icon](https://npm.io/package/@fluid-topics/ft-icon.md) — 20.6K weekly downloads

## Recent versions

- 0.2.0 (latest) — 2015-02-08
- 0.1.3 — 2015-02-01
- 0.1.2 — 2015-02-01

## README

# 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.
~~~js
var whatIsIn = require('whatisin');
console.log(whatIsIn(someVeryComplicatedObject));
~~~
On web browsers, including `whatIsIn.js` should add it to the global window object (untested).
~~~html
<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 :).

---
_Source: https://npm.io/package/whatisin · Machine-readable twin of the npm.io package page. Health data is recomputed on every publish._
