diff options
Diffstat (limited to 'node_modules/kind-of')
-rw-r--r-- | node_modules/kind-of/README.md | 17 | ||||
-rw-r--r-- | node_modules/kind-of/index.js | 3 | ||||
-rw-r--r-- | node_modules/kind-of/package.json | 12 |
3 files changed, 25 insertions, 7 deletions
diff --git a/node_modules/kind-of/README.md b/node_modules/kind-of/README.md index 4ac4f18b1..193d3283d 100644 --- a/node_modules/kind-of/README.md +++ b/node_modules/kind-of/README.md @@ -1,6 +1,6 @@ -# kind-of [](https://www.npmjs.com/package/kind-of) [](https://npmjs.org/package/kind-of) [](https://travis-ci.org/jonschlinkert/kind-of) +# kind-of [](https://www.npmjs.com/package/kind-of) [](https://npmjs.org/package/kind-of) [](https://npmjs.org/package/kind-of) [](https://travis-ci.org/jonschlinkert/kind-of) -Get the native type of a value. +> Get the native type of a value. ## Install @@ -10,6 +10,8 @@ Install with [npm](https://www.npmjs.com/): $ npm install --save kind-of ``` +## Install + Install with [bower](http://bower.io/) ```sh @@ -212,6 +214,15 @@ In 7 out of 8 cases, this library is 2x-10x faster than other top libraries incl Pull requests and stars are always welcome. For bugs and feature requests, [please create an issue](../../issues/new). +### Contributors + +| **Commits** | **Contributor**<br/> | +| --- | --- | +| 49 | [jonschlinkert](https://github.com/jonschlinkert) | +| 2 | [miguelmota](https://github.com/miguelmota) | +| 1 | [dtothefp](https://github.com/dtothefp) | +| 1 | [pdehaan](https://github.com/pdehaan) | + ### Building docs _(This document was generated by [verb-generate-readme](https://github.com/verbose/verb-generate-readme) (a [verb](https://github.com/verbose/verb) generator), please don't edit the readme directly. Any changes to the readme must be made in [.verb.md](.verb.md).)_ @@ -244,4 +255,4 @@ Released under the [MIT license](https://github.com/jonschlinkert/kind-of/blob/m *** -_This file was generated by [verb-generate-readme](https://github.com/verbose/verb-generate-readme), v0.1.28, on July 29, 2016._
\ No newline at end of file +_This file was generated by [verb-generate-readme](https://github.com/verbose/verb-generate-readme), v0.2.0, on December 07, 2016._
\ No newline at end of file diff --git a/node_modules/kind-of/index.js b/node_modules/kind-of/index.js index 87938c9a2..85083862e 100644 --- a/node_modules/kind-of/index.js +++ b/node_modules/kind-of/index.js @@ -56,6 +56,9 @@ module.exports = function kindOf(val) { if (type === '[object Arguments]') { return 'arguments'; } + if (type === '[object Error]') { + return 'error'; + } // buffer if (typeof Buffer !== 'undefined' && isBuffer(val)) { diff --git a/node_modules/kind-of/package.json b/node_modules/kind-of/package.json index e64971978..7e272ebde 100644 --- a/node_modules/kind-of/package.json +++ b/node_modules/kind-of/package.json @@ -1,18 +1,22 @@ { "name": "kind-of", "description": "Get the native type of a value.", - "version": "3.0.4", + "version": "3.1.0", "homepage": "https://github.com/jonschlinkert/kind-of", "author": "Jon Schlinkert (https://github.com/jonschlinkert)", + "contributors": [ + "David Fox-Powell <dtothefp@gmail.com> (https://dtothefp.github.io/me)", + "Jon Schlinkert <jon.schlinkert@sellside.com> (http://twitter.com/jonschlinkert)", + "Miguel Mota <miguel@mota.email> (https://miguelmota.com)", + "Peter deHaan (http://about.me/peterdehaan)" + ], "repository": "jonschlinkert/kind-of", "bugs": { "url": "https://github.com/jonschlinkert/kind-of/issues" }, "license": "MIT", "files": [ - "index.js", - "LICENSE", - "README.md" + "index.js" ], "main": "index.js", "engines": { |