mirror of
https://github.com/SamEyeBam/animate.git
synced 2025-12-15 10:11:05 +00:00
9 lines
278 B
JavaScript
9 lines
278 B
JavaScript
"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;
|
|
}
|