Coder Social home page Coder Social logo

creditcard's Introduction

Credit Card

Build status

Basic usage

Detects the applicable brand from the card number. The card number may be masked, you should use the masked number as much as possible to use the card number safely.

open CreditCard.Brand

match Detect "4111************" with
	| Some brand -> printfn "%s" brand.Name
	| None -> printfn "The card brand was not found"
open CreditCard.Brand

match DetectFrom [VISA; MasterCard] "4111************" with
	| Some brand -> printfn "%s" brand.Name
	| None -> printfn "The card brand was not found"

Be especially careful when handling card numbers on the server side, there is a risk of letting out the card number out.

Support card brand

Currently this package can identify the following card brands.

  • VISA
  • MasterCard
  • AmericanExpress
  • JCB
  • DinersClub

Build

MacOS

NuGet package

  1. Installing NuGet & Mono Framework

     brew install mono
    
     mkdir ~/bin
     cd bin
     wget https://dist.nuget.org/win-x86-commandline/latest/nuget.exe
    
  2. Build projects

     xbuild /p:Configuration=Release CreditCard.sln
    
  3. Build NuGet package

     mono ~/bin/nuget.exe pack CreditCard/CreditCard.fsproj -properties Configuration=Release
    

or

make setup
make build

creditcard's People

Contributors

holyshared avatar

Watchers

 avatar

creditcard's Issues

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.