KO
|
EN
gitlite — search
Search
#typescript
#ai-agents
#ai
#dsh-plugin
#deepseek-harness
#open-source
#cli
#claude-code
#codex
#developer-tools
#react
#windows
promise-any
★ 41
Open GitHub ↗
Promise.any() implementation
Download README (.md)
Explore Similar Repositories
eu-cookie-law-widget
:
The plugin that adds the "cookie law" widget.
FastMapper
:
Powerful convention-based, customizable and fastest tool for object-object mapping.It is useful for Entity to DTO, DTO to Entity mapping strategies.
processwarp
:
No description available.
ZP_EchoNestPy
:
Nest integration for Amazon Echo
mongodb-to-elasticsearch
:
http://findit.keenwon.com 用到的一个小工具,用来将数据从mongodb导入到elasticsearch
// repository documentation
Was this content helpful?
★ 0
(0 ratings)
Select Rating:
★
★
★
★
★
Submit Feedback
Recent Feedback
×
Download README
Do you want to download the
README.md
file for
promise-any
?
Download (.md)
# promise-any [ ](https://codeship.com/projects/27744) ES6 promises don't provide any(). A small library to implement them. Will convert arguments to promises if not already a promise. ```javascript var promiseAny = require('promise-any'); promiseAny([ Promise.reject('✗'), Promise.resolve('✓'), ]).then(function(value) { // value is '✓' :) }); promiseAny([ Promise.reject('✗'), Promise.reject('✗'), ]).catch(function(reasons) { // reasons is ['✗', '✗'] :( }); ```