Socket
Socket
Sign inDemoInstall

putil-isplainobject

Package Overview
Dependencies
0
Maintainers
1
Versions
9
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    putil-isplainobject

Simple and lightweight utility for checking given object is plain


Version published
Maintainers
1
Install size
5.00 kB
Created

Readme

Source

putil-isplainobject

NPM Version NPM Downloads Build Status Test Coverage Dependencies DevDependencies

Simple and lightweight utility for checking given object is plain

Installation

  • npm install putil-isplainobject --save

Usage

const isplainobject = require('putil-isplainobject');


console.log( isplainobject({a: 1})); // true
console.log( isplainobject(1)); // false
console.log( isplainobject('a')); // false
console.log( isplainobject(new MyClass())); // false
console.log( isplainobject(MyClass)); // false

Node Compatibility

  • node >= 6.x;

License

MIT

Keywords

FAQs

Last updated on 09 Jan 2023

Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc