# promisr

> An abstraction of Promise library and the utilities

Latest version **0.3.1** (published 2016-01-22) · Unlicense license · 0 weekly downloads

## Install

```sh
npm install promisr
pnpm add promisr
yarn add promisr
bun add promisr
```

## Health

**Score 15/100 (F)** — status: abandoned.

Positive: no vulnerabilities.

Warnings: low downloads; no types; no esm support; pre 1.0.

Negative: abandoned; low maintenance score.

## Facts

| | |
|---|---|
| Version | 0.3.1 |
| Published | 2016-01-22 |
| First published | 2016-01-09 |
| Weekly downloads | 0 |
| License | Unlicense |
| TypeScript types | none |
| Module format | CommonJS |
| Dependencies | 1 |
| Known vulnerabilities | 0 |
| Install scripts | no |
| GitHub stars | 0 |
| Author | Yu Inao |
| Maintainers | japboy |

## Links

- npm: https://www.npmjs.com/package/promisr
- Repository: https://github.com/japboy/promisr
- Issues: https://github.com/japboy/promisr/issues
- npm.io page: https://npm.io/package/promisr

## Dependencies (1)

- [underscore](https://npm.io/package/underscore.md) ^1.8.3

## Recent versions

- 0.3.1 (latest) — 2016-01-22
- 0.3.0 — 2016-01-11
- 0.2.1 — 2016-01-10
- 0.2.0 — 2016-01-10
- 0.1.0 — 2016-01-09

## README

Promisr
=======

An abstraction of Promise library and the utilities

[![Build Status](https://travis-ci.org/japboy/promisr.svg)](https://travis-ci.org/japboy/promisr)

## tl;dr

Install with NPM on Node.js:

```
npm install --save promisr
```

Load from CDN for web browsers:

```html
<script src="https://npmcdn.com/promisr@0.3.1/dist/promisr.min.js"></script>
```

Use this module like;

```javascript
var Promisr = require('promisr');

var promisr = new Promisr(window.Promise || window.Q || window.jQuery);

var proc = promisr.promisify(function (resolve, reject, value) {
  if (value) return resolve(value);
  reject(value);
});

proc(true)
.then(function (value) {
  console.log(value);  // true
});
```

Read [API doc](doc/api.md) for details.


License
-------

```
This is free and unencumbered software released into the public domain.

Anyone is free to copy, modify, publish, use, compile, sell, or
distribute this software, either in source code form or as a compiled
binary, for any purpose, commercial or non-commercial, and by any
means.

In jurisdictions that recognize copyright laws, the author or authors
of this software dedicate any and all copyright interest in the
software to the public domain. We make this dedication for the benefit
of the public at large and to the detriment of our heirs and
successors. We intend this dedication to be an overt act of
relinquishment in perpetuity of all present and future rights to this
software under copyright law.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
IN NO EVENT SHALL THE AUTHORS BE LIABLE FOR ANY CLAIM, DAMAGES OR
OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE,
ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
OTHER DEALINGS IN THE SOFTWARE.

For more information, please refer to <http://unlicense.org/>
```


Maintainer
----------

Yu Inao &lt;yu.inao@facebook.com&gt;

---
_Source: https://npm.io/package/promisr · Machine-readable twin of the npm.io package page. Health data is recomputed on every publish._
