any-promise-es6

AnyPromise adapter for ES6

Usage no npm install needed!

<script type="module">
  import anyPromiseEs6 from 'https://cdn.skypack.dev/any-promise-es6';
</script>

README

AnyPromise adapter for ES6

AnyPromise adapter for ES6.

It is a somewhat tautological implementation that just exposes ES6 Promises as-is.

Usage

This adapter is implemented as an ES6 module which can be installed with jspm and loaded via SystemJS as follows:

import {Promise} from 'any-promise-es6';

function answer() {
    return Promise.resolve(42);
}