UNPKG

bananas-commerce-admin

Version:

What's this, an admin for apes?

8 lines (6 loc) 294 B
import { PaymentMethod } from "../types/paymentMethod"; export const paymentMethodMask = (method: PaymentMethod) => { return method.method.toLowerCase().match(/.*(visa|mastercard|american express).*/) ? `•••• •••• •••• ${method.summary}` : method.summary; };