UNPKG

card-info

Version:

Get bank logo, colors, brand and etc. by card number

12 lines (10 loc) 296 B
const glob = require('glob') const gm = require('gm').subClass({ imageMagick: true }) const banksLogosPaths = glob.sync('./src/banks-logos/trim/*') for (const bankLogoPath of banksLogosPaths) { gm(bankLogoPath) .trim() .write(bankLogoPath, (err) => { if (err) throw err }) }