# is-true-object

> Returns `true` if target is a real non-`null` object.

Latest version **1.0.0** (published 2020-03-19) · LGPL-3.0 license · 0 weekly downloads

## Install

```sh
npm install is-true-object
pnpm add is-true-object
yarn add is-true-object
bun add is-true-object
```

## Health

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

Positive: has types; esm support; no vulnerabilities; high quality score.

Warnings: low downloads.

Negative: abandoned; low maintenance score.

## Facts

| | |
|---|---|
| Version | 1.0.0 |
| Published | 2020-03-19 |
| First published | 2020-03-19 |
| Weekly downloads | 0 |
| License | LGPL-3.0 |
| TypeScript types | bundled |
| Module format | ESM + CommonJS |
| Dependencies | 0 |
| Unpacked size | 10.9 KB |
| Known vulnerabilities | 0 |
| Install scripts | no |
| GitHub stars | 4 |
| Author | ExE Boss |
| Maintainers | exe-boss |
| Keywords | is-object, document.all, is-html-dda, undetectable |

## Links

- npm: https://www.npmjs.com/package/is-true-object
- Repository: https://github.com/ExE-Boss/node-packages
- Homepage: https://github.com/ExE-Boss/node-packages/tree/master/packages/is-true-object
- Issues: https://github.com/ExE-Boss/node-packages/issues
- npm.io page: https://npm.io/package/is-true-object

## Alternatives

- [@tsparticles/shape-image](https://npm.io/package/@tsparticles/shape-image.md) — 303.7K weekly downloads
- [@tsparticles/shape-line](https://npm.io/package/@tsparticles/shape-line.md) — 233.7K weekly downloads
- [stringify-attributes](https://npm.io/package/stringify-attributes.md) — 58.6K weekly downloads
- [mobile-drag-drop](https://npm.io/package/mobile-drag-drop.md) — 46.3K weekly downloads
- [@comunica/actor-rdf-parse-html](https://npm.io/package/@comunica/actor-rdf-parse-html.md) — 29.2K weekly downloads

## Recent versions

- 1.0.0 (latest) — 2020-03-19

## README

`is-true-object`<br/>
[![Build](https://img.shields.io/travis/com/ExE-Boss/node-packages/master)](https://travis-ci.com/ExE-Boss/node-packages)
[![License](https://img.shields.io/github/license/ExE-Boss/node-packages.svg)](https://github.com/ExE-Boss/node-packages/blob/master/packages/is-true-object/LICENSE)
[![npm](https://img.shields.io/npm/v/is-true-object.svg)](https://www.npmjs.com/package/is-true-object)
================

Returns `true` if target is a real non-`null` object, including objects with the `[[IsHTMLDDA]]` internal slot, such as `HTMLAllCollection`, which makes `typeof` return `undefined`.

```js
import isObject from "is-real-object";

isObject(undefined); // false
isObject(null); // false
isObject("string"); // false
isObject(123); // false
isObject(123n); // false
isObject(true); // false
isObject(false); // false
isObject(Symbol.iterator); // false

isObject({}); // true
isObject(() => {}); // true

// in browsers:
isObject(document.all); // true
```

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