style: formatted code

This commit is contained in:
arthurfiorette 2022-03-04 13:58:11 -03:00
parent e2f2428b75
commit 58d385927b
No known key found for this signature in database
GPG Key ID: 9D190CD53C53C555

View File

@ -29,13 +29,25 @@ const { setupCache } = require('axios-cache-interceptor/umd');
```html
<!-- Development build for ES2020+ (~11.2 KiB) -->
<script src="https://cdn.jsdelivr.net/npm/axios-cache-interceptor@0.9.3/umd/dev.js" integrity="sha256-rA/FnVuUARurz1Bf4Z39FYKwRxwof9EyDXUvNXpme7Y=" crossorigin="anonymous"></script>
<script
src="https://cdn.jsdelivr.net/npm/axios-cache-interceptor@0.9.3/umd/dev.js"
integrity="sha256-rA/FnVuUARurz1Bf4Z39FYKwRxwof9EyDXUvNXpme7Y="
crossorigin="anonymous"
></script>
<!-- Production for ES2017+ (~9.74 KiB) -->
<script src="https://cdn.jsdelivr.net/npm/axios-cache-interceptor@0.9.3/umd/index.js" integrity="sha256-j8ypa8+fqXmln3IeNAFQt5ptzfkOettceB7qQmIDIW4=" crossorigin="anonymous"></script>
<script
src="https://cdn.jsdelivr.net/npm/axios-cache-interceptor@0.9.3/umd/index.js"
integrity="sha256-j8ypa8+fqXmln3IeNAFQt5ptzfkOettceB7qQmIDIW4="
crossorigin="anonymous"
></script>
<!-- Production for ES5+ (~13.9 KiB) (Needs Promise polyfill) -->
<script src="https://cdn.jsdelivr.net/npm/axios-cache-interceptor@0.9.3/umd/es5.js" integrity="sha256-UCAsKcSsVNscI3Zydh5pmQt3QtRdLP4cF4rUwq0KLDY=" crossorigin="anonymous"></script>
<script
src="https://cdn.jsdelivr.net/npm/axios-cache-interceptor@0.9.3/umd/es5.js"
integrity="sha256-UCAsKcSsVNscI3Zydh5pmQt3QtRdLP4cF4rUwq0KLDY="
crossorigin="anonymous"
></script>
```
```js