Repositorio del curso CCOM4030 el semestre B91 del proyecto Artesanías con el Instituto de Cultura
christian 4571a14169 android fix 3 年 前
..
tests android fix 3 年 前
.travis.yml android fix 3 年 前
LICENSE android fix 3 年 前
package.json android fix 3 年 前
readme.md android fix 3 年 前
valid-identifier.js android fix 3 年 前

readme.md

Build Status npm version

Usage

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

Running the tests

npm test