es6-promise

WebJar for es6-promise

Лицензия

Лицензия

MIT
Группа

Группа

org.webjars.npm
Идентификатор

Идентификатор

es6-promise
Последняя версия

Последняя версия

4.2.8
Дата

Дата

Тип

Тип

jar
Описание

Описание

es6-promise
WebJar for es6-promise
Ссылка на сайт

Ссылка на сайт

http://webjars.org
Система контроля версий

Система контроля версий

https://github.com/stefanpenner/es6-promise

Скачать es6-promise

Как подключить последнюю версию

<!-- https://jarcasting.com/artifacts/org.webjars.npm/es6-promise/ -->
<dependency>
    <groupId>org.webjars.npm</groupId>
    <artifactId>es6-promise</artifactId>
    <version>4.2.8</version>
</dependency>
// https://jarcasting.com/artifacts/org.webjars.npm/es6-promise/
implementation 'org.webjars.npm:es6-promise:4.2.8'
// https://jarcasting.com/artifacts/org.webjars.npm/es6-promise/
implementation ("org.webjars.npm:es6-promise:4.2.8")
'org.webjars.npm:es6-promise:jar:4.2.8'
<dependency org="org.webjars.npm" name="es6-promise" rev="4.2.8">
  <artifact name="es6-promise" type="jar" />
</dependency>
@Grapes(
@Grab(group='org.webjars.npm', module='es6-promise', version='4.2.8')
)
libraryDependencies += "org.webjars.npm" % "es6-promise" % "4.2.8"
[org.webjars.npm/es6-promise "4.2.8"]

Зависимости

Библиотека не имеет зависимостей. Это самодостаточное приложение, которое не зависит ни от каких других библиотек.

Модули Проекта

Данный проект не имеет модулей.

ES6-Promise (subset of rsvp.js) Build Status

This is a polyfill of the ES6 Promise. The implementation is a subset of rsvp.js extracted by @jakearchibald, if you're wanting extra features and more debugging options, check out the full library.

For API details and how to use promises, see the JavaScript Promises HTML5Rocks article.

Downloads

CDN

To use via a CDN include this in your html:

<!-- Automatically provides/replaces `Promise` if missing or broken. -->
<script src="https://cdn.jsdelivr.net/npm/es6-promise@4/dist/es6-promise.js"></script>
<script src="https://cdn.jsdelivr.net/npm/es6-promise@4/dist/es6-promise.auto.js"></script> 

<!-- Minified version of `es6-promise-auto` below. -->
<script src="https://cdn.jsdelivr.net/npm/es6-promise@4/dist/es6-promise.min.js"></script>
<script src="https://cdn.jsdelivr.net/npm/es6-promise@4/dist/es6-promise.auto.min.js"></script> 

Node.js

To install:

yarn add es6-promise

or

npm install es6-promise

To use:

var Promise = require('es6-promise').Promise;

Usage in IE<9

catch and finally are reserved keywords in IE<9, meaning promise.catch(func) or promise.finally(func) throw a syntax error. To work around this, you can use a string to access the property as shown in the following example.

However most minifiers will automatically fix this for you, making the resulting code safe for old browsers and production:

promise['catch'](function(err) {
  // ...
});
promise['finally'](function() {
  // ...
});

Auto-polyfill

To polyfill the global environment (either in Node or in the browser via CommonJS) use the following code snippet:

require('es6-promise').polyfill();

Alternatively

require('es6-promise/auto');

Notice that we don't assign the result of polyfill() to any variable. The polyfill() method will patch the global environment (in this case to the Promise name) when called.

Building & Testing

You will need to have PhantomJS installed globally in order to run the tests.

npm install -g phantomjs

  • npm run build to build
  • npm test to run tests
  • npm start to run a build watcher, and webserver to test
  • npm run test:server for a testem test runner and watching builder

Версии библиотеки

Версия
4.2.8
4.2.6
4.2.5
4.2.4-1
4.2.4
4.2.2
4.1.1
4.1.0
4.0.3
3.3.1
3.2.1
3.1.2
3.0.2
2.3.0
2.2.0