You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

87 lines
4.0 KiB

4 years ago
  1. # is-extendable [![NPM version](https://img.shields.io/npm/v/is-extendable.svg?style=flat)](https://www.npmjs.com/package/is-extendable) [![NPM monthly downloads](https://img.shields.io/npm/dm/is-extendable.svg?style=flat)](https://npmjs.org/package/is-extendable) [![NPM total downloads](https://img.shields.io/npm/dt/is-extendable.svg?style=flat)](https://npmjs.org/package/is-extendable) [![Linux Build Status](https://img.shields.io/travis/jonschlinkert/is-extendable.svg?style=flat&label=Travis)](https://travis-ci.org/jonschlinkert/is-extendable)
  2. > Returns true if a value is a plain object, array or function.
  3. ## Install
  4. Install with [npm](https://www.npmjs.com/):
  5. ```sh
  6. $ npm install --save is-extendable
  7. ```
  8. ## Usage
  9. ```js
  10. var isExtendable = require('is-extendable');
  11. ```
  12. Returns true if the value is any of the following:
  13. * array
  14. * plain object
  15. * function
  16. ## Notes
  17. 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:
  18. * the value is not a primitive, or
  19. * that the object is a plain object, function or array
  20. Also note that an `extendable` object is not the same as an [extensible object](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Object/isExtensible), which is one that (in es6) is not sealed, frozen, or marked as non-extensible using `preventExtensions`.
  21. ## Release history
  22. ### v1.0.0 - 2017/07/20
  23. **Breaking changes**
  24. * No longer considers date, regex or error objects to be extendable
  25. ## About
  26. ### Related projects
  27. * [assign-deep](https://www.npmjs.com/package/assign-deep): Deeply assign the enumerable properties and/or es6 Symbol properies of source objects to the target… [more](https://github.com/jonschlinkert/assign-deep) | [homepage](https://github.com/jonschlinkert/assign-deep "Deeply assign the enumerable properties and/or es6 Symbol properies of source objects to the target (first) object.")
  28. * [is-equal-shallow](https://www.npmjs.com/package/is-equal-shallow): Does a shallow comparison of two objects, returning false if the keys or values differ. | [homepage](https://github.com/jonschlinkert/is-equal-shallow "Does a shallow comparison of two objects, returning false if the keys or values differ.")
  29. * [is-plain-object](https://www.npmjs.com/package/is-plain-object): Returns true if an object was created by the `Object` constructor. | [homepage](https://github.com/jonschlinkert/is-plain-object "Returns true if an object was created by the `Object` constructor.")
  30. * [isobject](https://www.npmjs.com/package/isobject): Returns true if the value is an object and not an array or null. | [homepage](https://github.com/jonschlinkert/isobject "Returns true if the value is an object and not an array or null.")
  31. * [kind-of](https://www.npmjs.com/package/kind-of): Get the native type of a value. | [homepage](https://github.com/jonschlinkert/kind-of "Get the native type of a value.")
  32. ### Contributing
  33. Pull requests and stars are always welcome. For bugs and feature requests, [please create an issue](../../issues/new).
  34. ### Building docs
  35. _(This project's readme.md is generated by [verb](https://github.com/verbose/verb-generate-readme), please don't edit the readme directly. Any changes to the readme must be made in the [.verb.md](.verb.md) readme template.)_
  36. To generate the readme, run the following command:
  37. ```sh
  38. $ npm install -g verbose/verb#dev verb-generate-readme && verb
  39. ```
  40. ### Running tests
  41. 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:
  42. ```sh
  43. $ npm install && npm test
  44. ```
  45. ### Author
  46. **Jon Schlinkert**
  47. * [github/jonschlinkert](https://github.com/jonschlinkert)
  48. * [twitter/jonschlinkert](https://twitter.com/jonschlinkert)
  49. ### License
  50. Copyright © 2017, [Jon Schlinkert](https://github.com/jonschlinkert).
  51. Released under the [MIT License](LICENSE).
  52. ***
  53. _This file was generated by [verb-generate-readme](https://github.com/verbose/verb-generate-readme), v0.6.0, on July 20, 2017._