项目作者: raymondjavaxx

项目描述 :
Credit-card utilities
高级语言: JavaScript
项目地址: git://github.com/raymondjavaxx/creditcardjs.git
创建时间: 2012-06-13T20:31:44Z
项目社区:https://github.com/raymondjavaxx/creditcardjs

开源协议:MIT License

下载


creditcard.js

Simple library for validating credit card numbers and detecting credit card types.

Usage

Detecting Card Type

  1. CreditCard.type("4111111111111111"); // -> "visa"

Validating

  1. CreditCard.valid("4111111111111111"); // -> true
  2. CreditCard.valid("1234"); // -> false