Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

fh-wfm-mediator

Package Overview
Dependencies
Maintainers
5
Versions
45
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

fh-wfm-mediator - npm Package Compare versions

Comparing version 1.0.0-pre.1 to 1.0.0-pre.2

2

Gruntfile.js

@@ -19,3 +19,3 @@ 'use strict';

logErrors: true,
timeout: 10000,
timeout: 1000,
run: true

@@ -22,0 +22,0 @@ }

@@ -90,6 +90,11 @@ const Promise = require('bluebird');

self.mediator.publish(topic, error);
return Promise.reject(error);
}
return function() {
return Promise.resolve(fn.apply(self, arguments))
var promise = fn.apply(self, arguments);
promise = promise && _.isFunction(promise.then) ? promise : Promise.resolve(promise);
return promise
.then(publishDone)

@@ -96,0 +101,0 @@ .catch(publishError);

{
"name": "fh-wfm-mediator",
"version": "1.0.0-pre.1",
"version": "1.0.0-pre.2",
"description": "An implementation of the mediator pattern for use with WFM",

@@ -5,0 +5,0 @@ "main": "lib/angular/mediator-ng.js",

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc