├── CHANGELOG ├── CONTRIBUTING.md ├── LICENSE ├── Makefile ├── README.md ├── bower.json ├── dist ├── .DS_Store └── creditcardutils.js ├── package.json ├── src ├── .DS_Store └── creditcardutils.coffee └── test ├── cardType_spec.coffee ├── formatCardExpiry_spec.coffee ├── formatCardNumber_spec.coffee ├── mocha.opts ├── parseCardExpiry_spec.coffee ├── validateCardCVC_spec.coffee ├── validateCardExpiry_spec.coffee └── validateCardNumber_spec.coffee /CHANGELOG: -------------------------------------------------------------------------------- 1 | = 1.0.0 2 | * Initial Release -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faaez/creditcardutils/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faaez/creditcardutils/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faaez/creditcardutils/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faaez/creditcardutils/HEAD/README.md -------------------------------------------------------------------------------- /bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faaez/creditcardutils/HEAD/bower.json -------------------------------------------------------------------------------- /dist/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faaez/creditcardutils/HEAD/dist/.DS_Store -------------------------------------------------------------------------------- /dist/creditcardutils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faaez/creditcardutils/HEAD/dist/creditcardutils.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faaez/creditcardutils/HEAD/package.json -------------------------------------------------------------------------------- /src/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faaez/creditcardutils/HEAD/src/.DS_Store -------------------------------------------------------------------------------- /src/creditcardutils.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faaez/creditcardutils/HEAD/src/creditcardutils.coffee -------------------------------------------------------------------------------- /test/cardType_spec.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faaez/creditcardutils/HEAD/test/cardType_spec.coffee -------------------------------------------------------------------------------- /test/formatCardExpiry_spec.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faaez/creditcardutils/HEAD/test/formatCardExpiry_spec.coffee -------------------------------------------------------------------------------- /test/formatCardNumber_spec.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faaez/creditcardutils/HEAD/test/formatCardNumber_spec.coffee -------------------------------------------------------------------------------- /test/mocha.opts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faaez/creditcardutils/HEAD/test/mocha.opts -------------------------------------------------------------------------------- /test/parseCardExpiry_spec.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faaez/creditcardutils/HEAD/test/parseCardExpiry_spec.coffee -------------------------------------------------------------------------------- /test/validateCardCVC_spec.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faaez/creditcardutils/HEAD/test/validateCardCVC_spec.coffee -------------------------------------------------------------------------------- /test/validateCardExpiry_spec.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faaez/creditcardutils/HEAD/test/validateCardExpiry_spec.coffee -------------------------------------------------------------------------------- /test/validateCardNumber_spec.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faaez/creditcardutils/HEAD/test/validateCardNumber_spec.coffee --------------------------------------------------------------------------------