aboutsummaryrefslogtreecommitdiff
path: root/node_modules/kind-of
diff options
context:
space:
mode:
authorFlorian Dold <florian.dold@gmail.com>2017-04-20 03:09:25 +0200
committerFlorian Dold <florian.dold@gmail.com>2017-04-24 16:14:29 +0200
commit82f2b76e25a4a67e01ec67e5ebe39d14ad771ea8 (patch)
tree965f6eb89b84d65a62b49008fd972c004832ccd1 /node_modules/kind-of
parente6e0cbc387c2a77b48e4065c229daa65bf1aa0fa (diff)
downloadwallet-core-82f2b76e25a4a67e01ec67e5ebe39d14ad771ea8.tar.xz
Reorganize module loading.
We now use webpack instead of SystemJS, effectively bundling modules into one file (plus commons chunks) for every entry point. This results in a much smaller extension size (almost half). Furthermore we use yarn/npm even for extension run-time dependencies. This relieves us from manually vendoring and building dependencies. It's also easier to understand for new developers familiar with node.
Diffstat (limited to 'node_modules/kind-of')
-rw-r--r--node_modules/kind-of/README.md17
-rw-r--r--node_modules/kind-of/index.js3
-rw-r--r--node_modules/kind-of/package.json12
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 [![NPM version](https://img.shields.io/npm/v/kind-of.svg?style=flat)](https://www.npmjs.com/package/kind-of) [![NPM downloads](https://img.shields.io/npm/dm/kind-of.svg?style=flat)](https://npmjs.org/package/kind-of) [![Build Status](https://img.shields.io/travis/jonschlinkert/kind-of.svg?style=flat)](https://travis-ci.org/jonschlinkert/kind-of)
+# kind-of [![NPM version](https://img.shields.io/npm/v/kind-of.svg?style=flat)](https://www.npmjs.com/package/kind-of) [![NPM monthly downloads](https://img.shields.io/npm/dm/kind-of.svg?style=flat)](https://npmjs.org/package/kind-of) [![NPM total downloads](https://img.shields.io/npm/dt/kind-of.svg?style=flat)](https://npmjs.org/package/kind-of) [![Linux Build Status](https://img.shields.io/travis/jonschlinkert/kind-of.svg?style=flat&label=Travis)](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": {