shift73k/assets_old/node_modules/@babel/types/lib/validators/react/isCompatTag.js

10 lines
No EOL
191 B
JavaScript

"use strict";
Object.defineProperty(exports, "__esModule", {
value: true
});
exports.default = isCompatTag;
function isCompatTag(tagName) {
return !!tagName && /^[a-z]/.test(tagName);
}