Skip to content
This repository has been archived by the owner on Jul 22, 2022. It is now read-only.

thieryw/event_loop_and_promises

Repository files navigation



Home - Documentation

Install / Import

$ npm install --save event_loop_and_promises
import { myFunction, myObject } from "event_loop_and_promises";

Specific imports:

import { myFunction } from "event_loop_and_promises/myFunction";
import { myObject } from "event_loop_and_promises/myObject";

Import from HTML, with CDN

Import it via a bundle that creates a global ( wider browser support ):

<script src="//unpkg.com/event_loop_and_promises/bundle.min.js"></script>
<script>
    const { myFunction, myObject } = event_loop_and_promises;
</script>

Or import it as an ES module:

<script type="module">
    import {
        myFunction,
        myObject,
    } from "//unpkg.com/event_loop_and_promises/zz_esm/index.js";
</script>

You can specify the version you wish to import: unpkg.com

Contribute

npm install
npm run build
npm test

About

No description, website, or topics provided.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published