New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

crispybot

Package Overview
Dependencies
Maintainers
1
Versions
35
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

crispybot - npm Package Compare versions

Comparing version 2.0.0 to 2.0.1

2

dist/crispy.d.ts

@@ -9,3 +9,3 @@ export declare class Crispy {

connect(): Promise<unknown>;
join(room: string): void;
join(room: string, user: object | undefined): void;
getIgnoreList(roomName: string): void;

@@ -12,0 +12,0 @@ checkYoutube(notify: boolean): void;

@@ -63,5 +63,5 @@ "use strict";

}
join(room) {
join(room, user) {
if (this.io) {
this.io.emit("room::join", { room });
this.io.emit("room::join", { room, user });
}

@@ -68,0 +68,0 @@ else {

{
"name": "crispybot",
"version": "2.0.0",
"version": "2.0.1",
"description": "An annoying bot.",

@@ -5,0 +5,0 @@ "main": "dist/crispy.js",

@@ -67,5 +67,5 @@ import io from "socket.io-client";

public join(room: string) {
public join(room: string, user: object | undefined) {
if (this.io) {
this.io.emit("room::join", { room });
this.io.emit("room::join", { room, user });
} else {

@@ -72,0 +72,0 @@ throw new Error("Socket disconnected!");

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

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