Comparing version 6.0.2 to 6.0.3
@@ -35,2 +35,6 @@ # Release history | ||
## [6.0.3] - 2020-01-16 | ||
- Merge pull request #31 for issue #30 | ||
## [6.0.0] - 2017-10-13 | ||
@@ -157,3 +161,2 @@ | ||
[Unreleased]: https://github.com/jonschlinkert/kind-of/compare/0.1.2...HEAD | ||
[keep-a-changelog]: https://github.com/olivierlacan/keep-a-changelog | ||
[keep-a-changelog]: https://github.com/olivierlacan/keep-a-changelog |
@@ -69,3 +69,3 @@ var toString = Object.prototype.toString; | ||
function ctorName(val) { | ||
return val.constructor ? val.constructor.name : null; | ||
return typeof val.constructor === 'function' ? val.constructor.name : null; | ||
} | ||
@@ -72,0 +72,0 @@ |
{ | ||
"name": "kind-of", | ||
"description": "Get the native type of a value.", | ||
"version": "6.0.2", | ||
"version": "6.0.3", | ||
"homepage": "https://github.com/jonschlinkert/kind-of", | ||
@@ -6,0 +6,0 @@ "author": "Jon Schlinkert (https://github.com/jonschlinkert)", |
@@ -332,4 +332,4 @@ # 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) | ||
* [is-glob](https://www.npmjs.com/package/is-glob): Returns `true` if the given string looks like a glob pattern or an extglob pattern… [more](https://github.com/jonschlinkert/is-glob) | [homepage](https://github.com/jonschlinkert/is-glob "Returns `true` if the given string looks like a glob pattern or an extglob pattern. This makes it easy to create code that only uses external modules like node-glob when necessary, resulting in much faster code execution and initialization time, and a bet") | ||
* [is-number](https://www.npmjs.com/package/is-number): Returns true if the value is a number. comprehensive tests. | [homepage](https://github.com/jonschlinkert/is-number "Returns true if the value is a number. comprehensive tests.") | ||
* [is-glob](https://www.npmjs.com/package/is-glob): Returns `true` if the given string looks like a glob pattern or an extglob pattern… [more](https://github.com/micromatch/is-glob) | [homepage](https://github.com/micromatch/is-glob "Returns `true` if the given string looks like a glob pattern or an extglob pattern. This makes it easy to create code that only uses external modules like node-glob when necessary, resulting in much faster code execution and initialization time, and a bet") | ||
* [is-number](https://www.npmjs.com/package/is-number): Returns true if a number or string value is a finite number. Useful for regex… [more](https://github.com/jonschlinkert/is-number) | [homepage](https://github.com/jonschlinkert/is-number "Returns true if a number or string value is a finite number. Useful for regex matches, parsing, user input, etc.") | ||
* [is-primitive](https://www.npmjs.com/package/is-primitive): Returns `true` if the value is a primitive. | [homepage](https://github.com/jonschlinkert/is-primitive "Returns `true` if the value is a primitive. ") | ||
@@ -339,13 +339,15 @@ | ||
| **Commits** | **Contributor** | | ||
| --- | --- | | ||
| 98 | [jonschlinkert](https://github.com/jonschlinkert) | | ||
| 3 | [aretecode](https://github.com/aretecode) | | ||
| 2 | [miguelmota](https://github.com/miguelmota) | | ||
| 1 | [dtothefp](https://github.com/dtothefp) | | ||
| 1 | [ianstormtaylor](https://github.com/ianstormtaylor) | | ||
| 1 | [ksheedlo](https://github.com/ksheedlo) | | ||
| 1 | [pdehaan](https://github.com/pdehaan) | | ||
| 1 | [laggingreflex](https://github.com/laggingreflex) | | ||
| 1 | [charlike-old](https://github.com/charlike-old) | | ||
| **Commits** | **Contributor** | | ||
| --- | --- | | ||
| 102 | [jonschlinkert](https://github.com/jonschlinkert) | | ||
| 3 | [aretecode](https://github.com/aretecode) | | ||
| 2 | [miguelmota](https://github.com/miguelmota) | | ||
| 1 | [doowb](https://github.com/doowb) | | ||
| 1 | [dtothefp](https://github.com/dtothefp) | | ||
| 1 | [ianstormtaylor](https://github.com/ianstormtaylor) | | ||
| 1 | [ksheedlo](https://github.com/ksheedlo) | | ||
| 1 | [pdehaan](https://github.com/pdehaan) | | ||
| 1 | [laggingreflex](https://github.com/laggingreflex) | | ||
| 1 | [tunnckoCore](https://github.com/tunnckoCore) | | ||
| 1 | [xiaofen9](https://github.com/xiaofen9) | | ||
@@ -356,9 +358,9 @@ ### Author | ||
* [linkedin/in/jonschlinkert](https://linkedin.com/in/jonschlinkert) | ||
* [github/jonschlinkert](https://github.com/jonschlinkert) | ||
* [twitter/jonschlinkert](https://twitter.com/jonschlinkert) | ||
* [GitHub Profile](https://github.com/jonschlinkert) | ||
* [Twitter Profile](https://twitter.com/jonschlinkert) | ||
* [LinkedIn Profile](https://linkedin.com/in/jonschlinkert) | ||
### License | ||
Copyright © 2017, [Jon Schlinkert](https://github.com/jonschlinkert). | ||
Copyright © 2020, [Jon Schlinkert](https://github.com/jonschlinkert). | ||
Released under the [MIT License](LICENSE). | ||
@@ -368,2 +370,2 @@ | ||
_This file was generated by [verb-generate-readme](https://github.com/verbose/verb-generate-readme), v0.6.0, on December 01, 2017._ | ||
_This file was generated by [verb-generate-readme](https://github.com/verbose/verb-generate-readme), v0.8.0, on January 16, 2020._ |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
New author
Supply chain riskA new npm collaborator published a version of the package for the first time. New collaborators are usually benign additions to a project, but do indicate a change to the security surface area of a package.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
22820
367
1