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

steveo

Package Overview
Dependencies
Maintainers
1
Versions
220
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

steveo - npm Package Compare versions

Comparing version 1.0.9 to 1.0.10

8

lib/task.js

@@ -26,2 +26,6 @@ 'use strict';

var getTopicName = function getTopicName(name) {
return ((process.env.NODE_ENV || 'DEVELOPMENT') + '_' + name).toUpperCase();
};
var subscribe = function subscribe(payload) {

@@ -32,3 +36,3 @@ return subscribeCallback(payload);

var define = function define(topicName, callBack) {
topic = topicName;
topic = getTopicName(topicName);
subscribeCallback = callBack;

@@ -40,3 +44,3 @@ var task = {

registry.addNewTask(task, producer);
eventEmitter.emit('create', topicName);
eventEmitter.emit('create', topic);
producer.initialize();

@@ -43,0 +47,0 @@ };

{
"name": "steveo",
"version": "1.0.9",
"version": "1.0.10",
"description": "A Task Manager Library",

@@ -5,0 +5,0 @@ "main": "lib/index.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