UNPKG

112 BJavaScriptView Raw
1module.exports = function isValidJSName(name){
2 return name.match ? !name.match(/[^a-zA-Z\$\_\d]+/) : false;
3}