create project
This commit is contained in:
24
kitabcitab/node_modules/@swc/helpers/lib/_instanceof.js
generated
vendored
Normal file
24
kitabcitab/node_modules/@swc/helpers/lib/_instanceof.js
generated
vendored
Normal file
@@ -0,0 +1,24 @@
|
||||
"use strict";
|
||||
Object.defineProperty(exports, "__esModule", {
|
||||
value: true
|
||||
});
|
||||
Object.defineProperty(exports, "default", {
|
||||
enumerable: true,
|
||||
get: function() {
|
||||
return _instanceof1;
|
||||
}
|
||||
});
|
||||
function _instanceof(left, right) {
|
||||
if (right != null && typeof Symbol !== "undefined" && right[Symbol.hasInstance]) {
|
||||
return !!right[Symbol.hasInstance](left);
|
||||
} else {
|
||||
return left instanceof right;
|
||||
}
|
||||
}
|
||||
function _instanceof1(left, right) {
|
||||
if (right != null && typeof Symbol !== "undefined" && right[Symbol.hasInstance]) {
|
||||
return !!right[Symbol.hasInstance](left);
|
||||
} else {
|
||||
return _instanceof(left, right);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user