Swiftpack.co - vitkuzmenko/CreditCardValidator as Swift Package

Swiftpack.co is a collection of thousands of indexed Swift packages. Search packages.
See all packages published by vitkuzmenko.
vitkuzmenko/CreditCardValidator 0.5.3
Credit Card Validator in Swift
⭐️ 122
🕓 2 years ago
iOS macOS watchOS tvOS
.package(url: "https://github.com/vitkuzmenko/CreditCardValidator.git", from: "0.5.3")

Installation

CocoaPods

pod "CreditCardValidator", '~> 0.5.3'

Swift Package Manager

.package(url: "https://github.com/vitkuzmenko/CreditCardValidator.git", from: "0.5.3")

After specifying "CreditCardValidator" as a dependency of the target in which you want to use it, run swift package update.

Accio

Do the same configurations as for SwiftPM, then run accio update instead of swift package update.

Usage

Validating

let number = "1234 5678 9123 4567"
   
if CreditCardValidator(number).isValid {
  // Card number is valid
} else {
  // Card number is invalid
}

Detect Card Type

let number = "1234 5678 9123 4567"
   
if let type = CreditCardValidator(number).type {
    print(type.name) // Visa, Mastercard, Amex etc.
} else {
    // I Can't detect type of credit card
}

Check type and validation

let number = "1234 5678 9123 4567"
   
if CreditCardValidator(number).isValid(for: .visa) {
    // Card number is valid and type is .visa
} else {
    // I Can't detect type of credit card
}

Supported types

  • Amex
  • Visa
  • MasterCard
  • Maestro
  • DinersClub
  • JCB
  • Discover
  • UnionPay
  • Mir

Contribution

Contributions are very welcomed 👍😃.

GitHub

link
Stars: 122
Last commit: 8 weeks ago
Advertisement: IndiePitcher.com - Cold Email Software for Startups

Swiftpack is being maintained by Petr Pavlik | @ptrpavlik | @swiftpackco | API | Analytics