Skip to content

Instantly share code, notes, and snippets.

@oscarmarina
Created June 1, 2020 06:18
Show Gist options
  • Save oscarmarina/f5c51103013038b21565ed6a8e566772 to your computer and use it in GitHub Desktop.
Save oscarmarina/f5c51103013038b21565ed6a8e566772 to your computer and use it in GitHub Desktop.
(function() {
const _customElementsDefine = window.customElements.define;
window.customElements.define = (name, cl, conf) => {
if (customElements.get(name)) {
console.warn(name + 'has been defined twice');
} else {
_customElementsDefine.call(window.customElements, name, cl, conf);
}
};
})();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment