A library that allows you to format credit and debit card numbers
npm install @phenax/cc-number-formatterInstall this library as a dependency in your project
```
yarn add @phenax/cc-number-formatter`
OR`
npm i @phenax/cc-number-formatter --save
Import format function into your project
`js`
// formatCardNumber :: String -> String
import { formatCardNumber } from '@phenax/cc-number-formatter';
`js`
const formattedNumber = formatCardNumber('4111111111111111'); // 4111 1111 1111 1111
* Clone this repository to your local machine
* Run yarn test`