README
xflight
const Xflight = require("xflight");
const xfl = new Xflight();
xfl.promise(url, () => {
return fetch(url);
});
Handle inflight promise to avoid async duplication
<script type="module">
import xflight from 'https://cdn.skypack.dev/xflight';
</script>
const Xflight = require("xflight");
const xfl = new Xflight();
xfl.promise(url, () => {
return fetch(url);
});