animate/webGl/my-threejs-test/node_modules/@swc/helpers/cjs/_instanceof.cjs

9 lines
278 B
JavaScript
Raw Normal View History

2024-06-24 09:24:00 +00:00
"use strict";
exports._ = exports._instanceof = _instanceof;
function _instanceof(left, right) {
if (right != null && typeof Symbol !== "undefined" && right[Symbol.hasInstance]) {
return !!right[Symbol.hasInstance](left);
} else return left instanceof right;
}