create-expo-cljs-app
Version:
Create a react native application with Expo and Shadow-CLJS!
9 lines (7 loc) • 387 B
JavaScript
goog.provide("goog.dom.tags");
goog.require("goog.object");
goog.dom.tags.VOID_TAGS_ = goog.object.createSet("area", "base", "br", "col", "command", "embed", "hr", "img", "input", "keygen", "link", "meta", "param", "source", "track", "wbr");
goog.dom.tags.isVoidTag = function(tagName) {
return goog.dom.tags.VOID_TAGS_[tagName] === true;
};
//# sourceMappingURL=goog.dom.tags.js.map