Skip to content

mikker/is-valid-variable

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

4 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

is-valid-variable

Check if a token is a valid variable name

npm install is-valid-property

Doesn't try to follow the full spec, ie might say false when something should be true, but will never say true when something should be false

Usage

const isValidVariable = require('is-valid-variable')

console.log(isValidVariable('const')) // false
console.log(isValidVariable('constantin')) // true
console.log(isValidVariable('64')) // false
console.log(isValidVariable('x64')) // true

License

MIT

About

Check if a token is a valid variable name

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages

  • JavaScript 100.0%