UNPKG
@runnable/api-client
Version:
latest (9.2.9)
9.2.9
9.2.8
9.2.7
9.2.6
9.2.5
9.2.4
9.2.3
9.2.2
9.2.1
9.2.0
9.1.1
9.1.0
9.0.0
7.5.0
7.4.0
7.3.0
7.2.0
7.1.0
7.0.3
7.0.2
7.0.1
7.0.0
6.0.1
5.1.1
5.1.0
5.0.1
5.0.0
Runnable API Client
github.com/Runnable/api-client
Runnable/api-client
@runnable/api-client
/
lib
/
intercept.js
15 lines
(13 loc)
•
260 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
'use strict'
;
module
.
exports
= intercept;
function
intercept
(
onError, next
) {
return
function
(
err
) {
if
(err) {
onError
(err); }
else
{
var
args =
Array
.
prototype
.
slice
.
call
(
arguments
,
1
); next.
apply
(
null
, args); } }; }