Created
June 1, 2020 06:18
-
-
Save oscarmarina/f5c51103013038b21565ed6a8e566772 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
(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