Skip to content

Instantly share code, notes, and snippets.

@JustinSDK
Created July 24, 2019 03:22
Show Gist options
  • Save JustinSDK/af98791f8863e1b00f9da75e3764cd5c to your computer and use it in GitHub Desktop.
Save JustinSDK/af98791f8863e1b00f9da75e3764cd5c to your computer and use it in GitHub Desktop.
Babel 的 _instanceof
function _instanceof(left, right) {
if (right != null && typeof Symbol !== "undefined" && right[Symbol.hasInstance]) {
return !!right[Symbol.hasInstance](left);
} else {
return left instanceof right;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment