Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .yarn/releases/yarn-1.15.2.js
Original file line number Diff line number Diff line change
Expand Up @@ -155804,7 +155804,7 @@ empty list will be returned. A validation error will have two properties:
}

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

function isArray(val) {
Expand Down