diff options
Diffstat (limited to 'includes/external/school/node_modules/@babel/runtime/helpers/instanceof.js')
-rw-r--r-- | includes/external/school/node_modules/@babel/runtime/helpers/instanceof.js | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/includes/external/school/node_modules/@babel/runtime/helpers/instanceof.js b/includes/external/school/node_modules/@babel/runtime/helpers/instanceof.js new file mode 100644 index 0000000..bc3d9e7 --- /dev/null +++ b/includes/external/school/node_modules/@babel/runtime/helpers/instanceof.js @@ -0,0 +1,8 @@ +function _instanceof(left, right) { + if (right != null && typeof Symbol !== "undefined" && right[Symbol.hasInstance]) { + return !!right[Symbol.hasInstance](left); + } else { + return left instanceof right; + } +} +module.exports = _instanceof, module.exports.__esModule = true, module.exports["default"] = module.exports;
\ No newline at end of file |