christian 4571a14169 android fix | hace 3 años | |
---|---|---|
.. | ||
tests | hace 3 años | |
.travis.yml | hace 3 años | |
LICENSE | hace 3 años | |
package.json | hace 3 años | |
readme.md | hace 3 años | |
valid-identifier.js | hace 3 años |
npm install valid-identifier
var validateIdentifier = require('valid-identifier');
validateIdentifier("$dollarSign"); // returns true
validateIdentifier("org.apache.cordova.myapp"); // true
validateIdentifier("private.name"); // false, private is a reserved word
validateIdentifier("org.8bit"); // false, portion starts with a number
validateIdentifier("extra.dot."); // false
npm test