mirror of
https://github.com/invoiceninja/invoiceninja.git
synced 2024-11-10 21:22:58 +01:00
17 lines
305 B
JavaScript
Vendored
17 lines
305 B
JavaScript
Vendored
/**
|
|
* Axios
|
|
*
|
|
* Promise based HTTP client for the browser and node.js
|
|
* https://github.com/axios/axios
|
|
*/
|
|
window.axios = require('axios');
|
|
|
|
/**
|
|
* card-validator
|
|
*
|
|
* Validate credit cards as users type.
|
|
* https://github.com/braintree/card-validator
|
|
*/
|
|
window.valid = require('card-validator');
|
|
|