PHP Classes

File: public/asset/vendor/jquery-validation/test/additional/creditcard.js

Recommend this page to a friend!
  Classes of fathurrahman   mnTemplate   public/asset/vendor/jquery-validation/test/additional/creditcard.js   Download  
File: public/asset/vendor/jquery-validation/test/additional/creditcard.js
Role: Auxiliary data
Content type: text/plain
Description: Auxiliary data
Class: mnTemplate
Route HTTP requests to callback functions
Author: By
Last change:
Date: 1 year ago
Size: 367 bytes
 

Contents

Class file image Download
QUnit.test( "creditcard", function( assert ) { var method = methodTest( "creditcard" ); assert.ok( method( "4111-1111-1111-1111" ), "Valid creditcard number" ); assert.ok( method( "4111 1111 1111 1111" ), "Valid creditcard number" ); assert.ok( !method( "41111" ), "Invalid creditcard number" ); assert.ok( !method( "asdf" ), "Invalid creditcard number" ); } );