How to use the payment.restrictNumeric function in payment

To help you get started, we’ve selected a few payment examples, based on popular ways it is used in public projects.

Secure your code as it's written. Use Snyk Code to scan source code in minutes - no build needed - and fix issues immediately.

github DefinitelyTyped / DefinitelyTyped / types / payment / payment-tests.ts View on Github external
import * as Payment from "payment";

const input = document.getElementById('input') as HTMLInputElement;

Payment.restrictNumeric(input);
Payment.formatCardNumber(input);
Payment.formatCardExpiry(input);
Payment.formatCardCVC(input);

const card = "1234 5678 9012 3456";

const cardType = Payment.fns.cardType(card);
Payment.fns.validateCardNumber(card);
Payment.fns.validateCardExpiry("1 / 20");
Payment.fns.validateCardExpiry("1", "20");
Payment.fns.validateCardCVC("123", cardType);
github lorensr / react-payment / src / CardForm.js View on Github external
componentDidMount() {
    const { number, expiration, cvc, zip } = this.refs

    Payment.formatCardNumber(ReactDOM.findDOMNode(number).querySelector('input'))
    Payment.formatCardExpiry(ReactDOM.findDOMNode(expiration).querySelector('input'))
    Payment.formatCardCVC(ReactDOM.findDOMNode(cvc).querySelector('input'))

    if (zip) {
      Payment.restrictNumeric(ReactDOM.findDOMNode(zip).querySelector('input'))
    }
  }

payment

A general purpose library for building credit card forms, validating inputs and formatting numbers. Base on jquery.payment by @stripe, but without the jQuery.

MIT
Latest version published 3 years ago

Package Health Score

57 / 100
Full package analysis