Packages

Module to discover the CreditCard brand based in the first digits

Current section

Files

Jump to
card_bin_ex lib brand master.ex
Raw

lib/brand/master.ex

defmodule CardBinEx.Brand.Master do
@moduledoc false
@behaviour CardBinEx.Brand
@doc false
def patterns do
[
[51, 55],
[2221, 2229],
[223, 229],
[23, 26],
[270, 271],
2720
]
end
end