summaryrefslogtreecommitdiff
path: root/alarm/node_modules/universalify
diff options
context:
space:
mode:
authorMinteck <contact@minteck.org>2023-01-10 14:54:04 +0100
committerMinteck <contact@minteck.org>2023-01-10 14:54:04 +0100
commit99c1d9af689e5325f3cf535c4007b3aeb8325229 (patch)
treee663b3c2ebdbd67c818ac0c5147f0ce1d2463cda /alarm/node_modules/universalify
parent9871b03912fc28ad38b4037ebf26a78aa937baba (diff)
downloadpluralconnect-99c1d9af689e5325f3cf535c4007b3aeb8325229.tar.gz
pluralconnect-99c1d9af689e5325f3cf535c4007b3aeb8325229.tar.bz2
pluralconnect-99c1d9af689e5325f3cf535c4007b3aeb8325229.zip
Update - This is an automated commit
Diffstat (limited to 'alarm/node_modules/universalify')
-rw-r--r--alarm/node_modules/universalify/LICENSE20
-rw-r--r--alarm/node_modules/universalify/README.md76
-rw-r--r--alarm/node_modules/universalify/index.js29
-rw-r--r--alarm/node_modules/universalify/package.json34
4 files changed, 0 insertions, 159 deletions
diff --git a/alarm/node_modules/universalify/LICENSE b/alarm/node_modules/universalify/LICENSE
deleted file mode 100644
index 514e84e..0000000
--- a/alarm/node_modules/universalify/LICENSE
+++ /dev/null
@@ -1,20 +0,0 @@
-(The MIT License)
-
-Copyright (c) 2017, Ryan Zimmerman <opensrc@ryanzim.com>
-
-Permission is hereby granted, free of charge, to any person obtaining a copy of
-this software and associated documentation files (the 'Software'), to deal in
-the Software without restriction, including without limitation the rights to
-use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of
-the Software, and to permit persons to whom the Software is furnished to do so,
-subject to the following conditions:
-
-The above copyright notice and this permission notice shall be included in all
-copies or substantial portions of the Software.
-
-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 OR
-COPYRIGHT HOLDERS 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.
diff --git a/alarm/node_modules/universalify/README.md b/alarm/node_modules/universalify/README.md
deleted file mode 100644
index aa12474..0000000
--- a/alarm/node_modules/universalify/README.md
+++ /dev/null
@@ -1,76 +0,0 @@
-# universalify
-
-[![Travis branch](https://img.shields.io/travis/RyanZim/universalify/master.svg)](https://travis-ci.org/RyanZim/universalify)
-![Coveralls github branch](https://img.shields.io/coveralls/github/RyanZim/universalify/master.svg)
-![npm](https://img.shields.io/npm/dm/universalify.svg)
-![npm](https://img.shields.io/npm/l/universalify.svg)
-
-Make a callback- or promise-based function support both promises and callbacks.
-
-Uses the native promise implementation.
-
-## Installation
-
-```bash
-npm install universalify
-```
-
-## API
-
-### `universalify.fromCallback(fn)`
-
-Takes a callback-based function to universalify, and returns the universalified function.
-
-Function must take a callback as the last parameter that will be called with the signature `(error, result)`. `universalify` does not support calling the callback with three or more arguments, and does not ensure that the callback is only called once.
-
-```js
-function callbackFn (n, cb) {
- setTimeout(() => cb(null, n), 15)
-}
-
-const fn = universalify.fromCallback(callbackFn)
-
-// Works with Promises:
-fn('Hello World!')
-.then(result => console.log(result)) // -> Hello World!
-.catch(error => console.error(error))
-
-// Works with Callbacks:
-fn('Hi!', (error, result) => {
- if (error) return console.error(error)
- console.log(result)
- // -> Hi!
-})
-```
-
-### `universalify.fromPromise(fn)`
-
-Takes a promise-based function to universalify, and returns the universalified function.
-
-Function must return a valid JS promise. `universalify` does not ensure that a valid promise is returned.
-
-```js
-function promiseFn (n) {
- return new Promise(resolve => {
- setTimeout(() => resolve(n), 15)
- })
-}
-
-const fn = universalify.fromPromise(promiseFn)
-
-// Works with Promises:
-fn('Hello World!')
-.then(result => console.log(result)) // -> Hello World!
-.catch(error => console.error(error))
-
-// Works with Callbacks:
-fn('Hi!', (error, result) => {
- if (error) return console.error(error)
- console.log(result)
- // -> Hi!
-})
-```
-
-## License
-
-MIT
diff --git a/alarm/node_modules/universalify/index.js b/alarm/node_modules/universalify/index.js
deleted file mode 100644
index 828f754..0000000
--- a/alarm/node_modules/universalify/index.js
+++ /dev/null
@@ -1,29 +0,0 @@
-'use strict'
-
-exports.fromCallback = function (fn) {
- return Object.defineProperty(function () {
- if (typeof arguments[arguments.length - 1] === 'function') fn.apply(this, arguments)
- else {
- return new Promise((resolve, reject) => {
- arguments[arguments.length] = (err, res) => {
- if (err) return reject(err)
- resolve(res)
- }
- arguments.length++
- fn.apply(this, arguments)
- })
- }
- }, 'name', { value: fn.name })
-}
-
-exports.fromPromise = function (fn) {
- return Object.defineProperty(function () {
- const cb = arguments[arguments.length - 1]
- if (typeof cb !== 'function') return fn.apply(this, arguments)
- else {
- delete arguments[arguments.length - 1]
- arguments.length--
- fn.apply(this, arguments).then(r => cb(null, r), cb)
- }
- }, 'name', { value: fn.name })
-}
diff --git a/alarm/node_modules/universalify/package.json b/alarm/node_modules/universalify/package.json
deleted file mode 100644
index 62cc6be..0000000
--- a/alarm/node_modules/universalify/package.json
+++ /dev/null
@@ -1,34 +0,0 @@
-{
- "name": "universalify",
- "version": "0.2.0",
- "description": "Make a callback- or promise-based function support both promises and callbacks.",
- "keywords": [
- "callback",
- "native",
- "promise"
- ],
- "homepage": "https://github.com/RyanZim/universalify#readme",
- "bugs": "https://github.com/RyanZim/universalify/issues",
- "license": "MIT",
- "author": "Ryan Zimmerman <opensrc@ryanzim.com>",
- "files": [
- "index.js"
- ],
- "repository": {
- "type": "git",
- "url": "git+https://github.com/RyanZim/universalify.git"
- },
- "scripts": {
- "test": "standard && nyc tape test/*.js | colortape"
- },
- "devDependencies": {
- "colortape": "^0.1.2",
- "coveralls": "^3.0.1",
- "nyc": "^10.2.0",
- "standard": "^10.0.1",
- "tape": "^4.6.3"
- },
- "engines": {
- "node": ">= 4.0.0"
- }
-}