You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
28 lines
544 B
28 lines
544 B
"use strict";
|
|
|
|
exports.__esModule = true;
|
|
exports.callInterceptor = callInterceptor;
|
|
|
|
var _ = require(".");
|
|
|
|
function callInterceptor(options) {
|
|
var interceptor = options.interceptor,
|
|
args = options.args,
|
|
done = options.done;
|
|
|
|
if (interceptor) {
|
|
var returnVal = interceptor.apply(void 0, args);
|
|
|
|
if ((0, _.isPromise)(returnVal)) {
|
|
returnVal.then(function (value) {
|
|
if (value) {
|
|
done();
|
|
}
|
|
}).catch(_.noop);
|
|
} else if (returnVal) {
|
|
done();
|
|
}
|
|
} else {
|
|
done();
|
|
}
|
|
} |