Home
Docs
GitHub
Pricing
Blog
Log In

Run Sandworm Audit for your App

Get started
Generated on May 19, 2024 via pnpm

is-extendable 1.0.1

Returns true if a value is a plain object, array or function.
Package summary
Share
0
issues
1
license
3
MIT
Package created
29 Jun 2015
Version published
11 Sep 2017
Maintainers
2
Total deps
3
Direct deps
1
License
MIT

Issues

0
This package has no issues

Licenses

MIT License

Permissive
OSI Approved
This is a human-readable summary of (and not a substitute for) the license. Disclaimer.
Can
commercial-use
modify
distribute
sublicense
private-use
Cannot
hold-liable
Must
include-copyright
include-license
3 Packages, Including:
is-extendable@1.0.1
is-plain-object@2.0.4
isobject@3.0.1
Disclaimer

This deed highlights only some of the key features and terms of the actual license. It is not a license and has no legal value. You should carefully review all of the terms and conditions of the actual license before using the licensed material.

Sandworm is not a law firm and does not provide legal services. Distributing, displaying, or linking to this deed or the license that it summarizes does not create a lawyer-client or any other relationship.

Direct Dependencies

1
All Dependencies CSV
β“˜ This is a list of is-extendable 's direct dependencies. Data on all dependencies, including transitive ones, is available via CSV download.
NameVersionSizeLicenseTypeVulnerabilities
is-plain-object2.0.42.96 kBMIT
prod

Visualizations

Frequently Asked Questions

What does is-extendable do?

The is-extendable npm package is a handy utility in JavaScript programming which checks and returns a "True" value if the input is a plain object, an array, or a function. This allows programmers to easily determine if a value can be extended, aiding in functions such as adding properties or methods to the original value.

How do you use is-extendable?

Utilizing the is-extendable package is an easy process. First, the package must be installed onto your system. This can be done using Node Package Manager (npm) with the command npm install --save is-extendable. Once installed, the module can be required at the top of any JavaScript file using the command var isExtendable = require('is-extendable');. This command imports the functionality of the is-extendable module into the file and assigns it to the variable isExtendable. With this variable, you can check whether a value is extendable by calling isExtendable(value), replacing "value" with the object, array or function you wish to examine.

Where are the is-extendable docs?

The is-extendable documentation is scattered throughout various parts of its readme file in its GitHub repository (https://github.com/jonschlinkert/is-extendable). The readme file gives a fundamental overview of the package's capabilities, usage examples, installation instructions, and additional notes about the specifics of its functionality. The readme content is generated by the verb project, and any changes to the documentation must be done through the associated .verb.md readme template.