lyxaira.glass 74ca844f42 Actualizacion cambios generados: seccion #12, #14 y #15. | il y a 4 ans | |
---|---|---|
.. | ||
tests | il y a 4 ans | |
.travis.yml | il y a 4 ans | |
LICENSE | il y a 4 ans | |
package.json | il y a 4 ans | |
readme.md | il y a 4 ans | |
valid-identifier.js | il y a 4 ans |
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