is-extendable
Last updated
Was this helpful?
Last updated
Was this helpful?
Returns true if a value is a plain object, array or function.
Install with :
Returns true if the value is any of the following:
array
plain object
function
All objects in JavaScript can have keys, but it's a pain to check for this, since we ether need to verify that the value is not null
or undefined
and:
the value is not a primitive, or
that the object is a plain object, function or array
Also note that an extendable
object is not the same as an , which is one that (in es6) is not sealed, frozen, or marked as non-extensible using preventExtensions
.
Breaking changes
No longer considers date, regex or error objects to be extendable
To generate the readme, run the following command:
Running and reviewing unit tests is a great way to get familiarized with a library and its API. You can install dependencies and run tests with the following command:
Jon Schlinkert
: Deeply assign the enumerable properties and/or es6 Symbol properies of source objects to the target… |
: Does a shallow comparison of two objects, returning false if the keys or values differ. |
: Returns true if an object was created by the Object
constructor. |
: Returns true if the value is an object and not an array or null. |
: Get the native type of a value. |
Pull requests and stars are always welcome. For bugs and feature requests, .
(This project's readme.md is generated by , please don't edit the readme directly. Any changes to the readme must be made in the readme template.)
Copyright © 2017, . Released under the .
This file was generated by , v0.6.0, on July 20, 2017.