Comparing version 0.0.3 to 0.0.4
'use strict'; | ||
var _interopRequireWildcard = function (obj) { return obj && obj.__esModule ? obj : { 'default': obj }; }; | ||
var _import = require('lodash'); | ||
var _import2 = _interopRequireWildcard(_import); | ||
module.exports = function () { | ||
@@ -85,3 +91,3 @@ return function (listenerInterceptor) { | ||
})(function () { | ||
return _.each(unregister, function (fn) { | ||
return _import2['default'].each(unregister, function (fn) { | ||
return fn(); | ||
@@ -91,3 +97,3 @@ }); | ||
return { | ||
v: _.transform(event, function (result, listener, eventName) { | ||
v: _import2['default'].transform(event, function (result, listener, eventName) { | ||
result[eventName] = on(events, listenerInterceptor, eventName, listener); | ||
@@ -94,0 +100,0 @@ }, unregister) |
{ | ||
"name": "es-emitter", | ||
"version": "0.0.3", | ||
"version": "0.0.4", | ||
"description": "A small function that produces an emitter", | ||
@@ -32,3 +32,6 @@ "repository": "https://github.com/blakelapierre/es-emitter", | ||
"vinyl-source-stream": "^1.1.0" | ||
}, | ||
"dependencies": { | ||
"lodash": "^3.7.0" | ||
} | ||
} |
@@ -0,1 +1,3 @@ | ||
import _ from 'lodash'; | ||
module.exports = () => { | ||
@@ -2,0 +4,0 @@ return listenerInterceptor => { |
Sorry, the diff of this file is not supported yet
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
120926
3718
1
+ Addedlodash@^3.7.0
+ Addedlodash@3.10.1(transitive)