New Research: Supply Chain Attack on Axios Pulls Malicious Dependency from npm.Details →
Socket
Book a DemoSign in
Socket

@primitive/is-object

Package Overview
Dependencies
Maintainers
2
Versions
2
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@primitive/is-object

Determine if a value is an object

latest
Source
npmnpm
Version
1.1.0
Version published
Maintainers
2
Created
Source

is-object

NPM NPM CDN LICENSE

Determine if a value is an object.

A value is an object if it is of type object, or is an instance of reference type Object.

Usage

    npm install @primitive/is-object --save   # Install package via NPM
    yarn add @primitive/is-object             # Install package via Yarn
    import { expect } from "chai";
    import isObject from "@primitive/is-object";

    expect(isObject(new Object())).to.be.true;
    expect(isObject({ foo: true })).to.be.true;

    expect(isObject([ 1, 2, 3 ]).to.be.false;
    expect(isObject(undefined)).to.be.false;
    expect(isObject(null)).to.be.false;

This package contains TypeScript type declarations. Furthermore, the package uses TypeScript type guards to allow type inference to influence intellisense.

    if (isObject(x)) {
        // IntelliSense now knows `x` is an object.
        let y: object = x;
    }

Content Delivery Network (CDN)

This package can be imported via unpkg as demonstrated below.

    <script src="https://unpkg.com/@primitive/is-object/dist/index.min.js">
    <script type="application/javascript">
        var x = { foo: "bar", baz: "ray" };
        if (isObject(x)) {
            // `x` is an object!
        }
    </script>

Build & Test

This package uses Gulp for building, and Chai and Mocha for testing.

    npm install     # Installs dependencies.
    npm run build   # Build the project.
    npm test        # Run tests.

License

Refer to the LICENSE file for license information.

Keywords

assert

FAQs

Package last updated on 23 Jan 2018

Did you know?

Socket

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