Skip to content

Commit

Permalink
Updating to kind-of@6.0.3 (#57367)
Browse files Browse the repository at this point in the history
* Updating to kind-of@6.0.2

* Rebuilding @kbn\pm
  • Loading branch information
kobelb authored Feb 11, 2020
1 parent 8ec0e01 commit f305fe0
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 8 deletions.
10 changes: 5 additions & 5 deletions packages/kbn-pm/dist/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -88442,7 +88442,7 @@ module.exports = function kindOf(val) {
};

function ctorName(val) {
return val.constructor ? val.constructor.name : null;
return typeof val.constructor === 'function' ? val.constructor.name : null;
}

function isArray(val) {
Expand Down Expand Up @@ -88653,7 +88653,7 @@ module.exports = function kindOf(val) {
};

function ctorName(val) {
return val.constructor ? val.constructor.name : null;
return typeof val.constructor === 'function' ? val.constructor.name : null;
}

function isArray(val) {
Expand Down Expand Up @@ -88844,7 +88844,7 @@ module.exports = function kindOf(val) {
};

function ctorName(val) {
return val.constructor ? val.constructor.name : null;
return typeof val.constructor === 'function' ? val.constructor.name : null;
}

function isArray(val) {
Expand Down Expand Up @@ -101921,7 +101921,7 @@ module.exports = function kindOf(val) {
};

function ctorName(val) {
return val.constructor ? val.constructor.name : null;
return typeof val.constructor === 'function' ? val.constructor.name : null;
}

function isArray(val) {
Expand Down Expand Up @@ -104780,7 +104780,7 @@ module.exports = function kindOf(val) {
};

function ctorName(val) {
return val.constructor ? val.constructor.name : null;
return typeof val.constructor === 'function' ? val.constructor.name : null;
}

function isArray(val) {
Expand Down
6 changes: 3 additions & 3 deletions yarn.lock
Original file line number Diff line number Diff line change
Expand Up @@ -18856,9 +18856,9 @@ kind-of@^5.0.0, kind-of@^5.0.2:
integrity sha512-NGEErnH6F2vUuXDh+OlbcKW7/wOcfdRHaZ7VWtqCztfHri/++YKmP51OdWeGPuqCOba6kk2OTe5d02VmTB80Pw==

kind-of@^6.0.0, kind-of@^6.0.2:
version "6.0.2"
resolved "https://registry.yarnpkg.com/kind-of/-/kind-of-6.0.2.tgz#01146b36a6218e64e58f3a8d66de5d7fc6f6d051"
integrity sha512-s5kLOcnH0XqDO+FvuaLX8DDjZ18CGFk7VygH40QoKPUQhW4e2rvM0rwUq0t8IQDOwYSeLK01U90OjzBTme2QqA==
version "6.0.3"
resolved "https://registry.yarnpkg.com/kind-of/-/kind-of-6.0.3.tgz#07c05034a6c349fa06e24fa35aa76db4580ce4dd"
integrity sha512-dcS1ul+9tmeD95T+x28/ehLgd9mENa3LsvDTtzm3vyBEO7RPptvAD+t44WVXaUjTBRcrpFeFlC8WCruUR456hw==

klaw@^1.0.0:
version "1.3.1"
Expand Down

0 comments on commit f305fe0

Please sign in to comment.