summaryrefslogtreecommitdiff
path: root/tools/node_modules/babel-eslint/node_modules/@babel/types/lib/validators/react/isCompatTag.js
blob: f5dc829a9b95292ffec174cbc4a991c21fb49a78 (plain)
1
2
3
4
5
6
7
8
"use strict";

exports.__esModule = true;
exports.default = isCompatTag;

function isCompatTag(tagName) {
  return !!tagName && /^[a-z]|-/.test(tagName);
}