2020-03-26 22:43:44 +01:00
|
|
|
/**
|
|
|
|
|
* Axios
|
2020-04-23 00:49:23 +02:00
|
|
|
*
|
2020-03-26 22:43:44 +01:00
|
|
|
* Promise based HTTP client for the browser and node.js
|
|
|
|
|
* https://github.com/axios/axios
|
|
|
|
|
*/
|
2020-06-16 18:09:43 +02:00
|
|
|
window.axios = require('axios');
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* card-validator
|
|
|
|
|
*
|
|
|
|
|
* Validate credit cards as users type.
|
|
|
|
|
* https://github.com/braintree/card-validator
|
|
|
|
|
*/
|
|
|
|
|
window.valid = require('card-validator');
|
|
|
|
|
|