An ES (JavaScript & TypeScript) module to determine whether the object is plain.
Remote | JSR | NPM | |
---|---|---|---|
Bun >= v1.1.0 | ❌ | ❓ | ✔️ |
Cloudflare Workers | ❌ | ❓ | ✔️ |
Deno >= v1.42.0 | ✔️ | ✔️ | ✔️ |
NodeJS >= v16.13.0 | ❌ | ❓ | ✔️ |
https://raw.githubusercontent.com/hugoalh/is-object-plain-es/{Tag}/mod.ts
[jsr:]@hugoalh/is-object-plain[@{Tag}]
[npm:]@hugoalh/is-object-plain[@{Tag}]
For usage of remote resources, it is recommended to import the entire module with the main path mod.ts
, however it is also able to import part of the module with sub path if available, but do not import if:
_foo.ts
, _util/bar.ts
), orfoo.bench.ts
, foo.test.ts
), or_bar
, _foo
).These elements are not considered part of the public API, thus no stability is guaranteed for them.
For usage of JSR or NPM resources, it is recommended to import the entire module with the main entrypoint, however it is also able to import part of the module with sub entrypoint if available, please visit the file jsr.jsonc
property exports
for available sub entrypoints.
It is recommended to use this module with tag for immutability.
This module does not require any runtime permission.
function isObjectPlain(item: object): boolean;
isObjectPlain(new Map([ ["a", 1], ["b", 2], ["c", 3] ])); //=> false
isObjectPlain({ a: 1, b: 2, c: 3 }); //=> true
Add Package
deno add jsr:@hugoalh/is-object-plain
Import symbol
import * as is_object_plain from "@hugoalh/is-object-plain";
---- OR ----
Import directly with a jsr specifier
import * as is_object_plain from "jsr:@hugoalh/is-object-plain";
Add Package
npx jsr add @hugoalh/is-object-plain
Import symbol
import * as is_object_plain from "@hugoalh/is-object-plain";
Add Package
yarn dlx jsr add @hugoalh/is-object-plain
Import symbol
import * as is_object_plain from "@hugoalh/is-object-plain";
Add Package
pnpm dlx jsr add @hugoalh/is-object-plain
Import symbol
import * as is_object_plain from "@hugoalh/is-object-plain";
Add Package
bunx jsr add @hugoalh/is-object-plain
Import symbol
import * as is_object_plain from "@hugoalh/is-object-plain";