vending-machine/mobile/node_modules/licia/isShadowRoot.js
2026-04-03 06:07:13 +08:00

9 lines
151 B
JavaScript

exports = function(val) {
if (window.ShadowRoot) {
return val instanceof ShadowRoot;
}
return false;
};
module.exports = exports;