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

irc

Package Overview
Dependencies
Maintainers
1
Versions
21
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

irc - npm Package Compare versions

Comparing version 0.3.5 to 0.3.6

Makefile

9

lib/irc.js

@@ -320,2 +320,3 @@ /*

self.emit('names', message.args[1], channel.users);
self.emit('names' + message.args[1], channel.users);
self.send('MODE', message.args[1]);

@@ -693,3 +694,3 @@ }

if ( args[args.length-1].match(/\s/) ) {
if ( args[args.length-1].match(/\s/) || args[args.length-1].match(/^:/) || args[args.length-1] === "" ) {
args[args.length-1] = ":" + args[args.length-1];

@@ -877,4 +878,4 @@ }

// Parse parameters
if ( line.indexOf(':') != -1 ) {
match = line.match(/(.*)(?:^:|\s+:)(.*)/);
if ( line.search(/^:|\s+:/) != -1 ) {
match = line.match(/(.*?)(?:^:|\s+:)(.*)/);
middle = match[1].trimRight();

@@ -895,1 +896,3 @@ trailing = match[2];

} // }}}
exports.parseMessage = parseMessage;
{
"name" : "irc",
"description" : "An IRC client library for node",
"version" : "0.3.5",
"version" : "0.3.6",
"author" : "Martyn Smith <martyn@dollyfish.net.nz>",
"contributors" : [],
"contributors" : [ {
"name": "xAndy",
"email": "xandy@hackerspace-bamberg.de"
} ],
"repository" : {

@@ -8,0 +11,0 @@ "type" : "git",

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