Skip to content

Commit

Permalink
make sure we are in a browser before registerElement check - #3335
Browse files Browse the repository at this point in the history
  • Loading branch information
marcalexiei authored and evs-chris committed Mar 19, 2021
1 parent 7f10049 commit 2e58097
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/utils/dom.js
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import { isString, isNumber } from 'utils/is';

let createElement, matches, div, methodNames, unprefixed, prefixed, i, j, makeFunction;

const customStr = 'registerElement' in doc;
const customStr = isClient && 'registerElement' in doc;
function wrap(is) {
return customStr ? is : { is };
}
Expand Down

0 comments on commit 2e58097

Please sign in to comment.