MCPcopy Create free account
hub / github.com/sindresorhus/is-plain-obj

github.com/sindresorhus/is-plain-obj @main

Chat with this repo
repository ↗ · DeepWiki ↗ · + Follow
7 symbols 19 edges 5 files 0 documented · 0% updated 2y agov4.1.0 · 2022-06-15★ 106

Browse by type

Functions 5 Types & classes 2
What it actually does AI analysis from the code graph — generated when you open this
loading…
README

is-plain-obj

Check if a value is a plain object

An object is plain if it's created by either {}, new Object(), or Object.create(null).

Install

$ npm install is-plain-obj

Usage

import isPlainObject from 'is-plain-obj';
import {runInNewContext} from 'node:vm';

isPlainObject({foo: 'bar'});
//=> true

isPlainObject(new Object());
//=> true

isPlainObject(Object.create(null));
//=> true

// This works across realms
isPlainObject(runInNewContext('({})'));
//=> true

isPlainObject([1, 2, 3]);
//=> false

class Unicorn {}
isPlainObject(new Unicorn());
//=> false

isPlainObject(Math);
//=> false

Related

  • is-obj - Check if a value is an object
  • is - Type check values

<b>
    <a href="https://tidelift.com/subscription/pkg/npm-is-plain-obj?utm_source=npm-is-plain-obj&utm_medium=referral&utm_campaign=readme">Get professional support for this package with a Tidelift subscription</a>
</b>



<sub>
    Tidelift helps make open source sustainable for maintainers while giving companies

assurances about security, maintenance, and licensing for their dependencies.

Core symbols most depended-on inside this repo

browse all functions →

Shape

Function 5
Class 2

Languages

TypeScript100%

Modules by API surface

benchmark.js4 symbols
test.js2 symbols
index.js1 symbols

Dependencies from manifests, versioned

ava6.1.2 · 1×
tsd0.31.0 · 1×
xo0.58.0 · 1×

For agents

$ claude mcp add is-plain-obj \
  -- python -m otcore.mcp_server <graph>

⬇ download graph artifact

Ask about this repo answers extend the page