full site update
This commit is contained in:
6
node_modules/@swc/helpers/esm/_instanceof.js
generated
vendored
Normal file
6
node_modules/@swc/helpers/esm/_instanceof.js
generated
vendored
Normal file
@@ -0,0 +1,6 @@
|
||||
function _instanceof(left, right) {
|
||||
if (right != null && typeof Symbol !== "undefined" && right[Symbol.hasInstance]) {
|
||||
return !!right[Symbol.hasInstance](left);
|
||||
} else return left instanceof right;
|
||||
}
|
||||
export { _instanceof as _ };
|
Reference in New Issue
Block a user