UNPKG

152 BJavaScriptView Raw
1function isConstant(str) {
2 var allCapsWithUnderScore = /^[A-Z_][A-Z_\d]*$/;
3 return allCapsWithUnderScore.test(str);
4}
5
6module.exports = isConstant;