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

smith

Package Overview
Dependencies
Maintainers
3
Versions
21
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

smith - npm Package Compare versions

Comparing version 0.1.5 to 0.1.6

.settings.xml

5

package.json

@@ -8,3 +8,6 @@ {

"description": "Smith is an RPC agent system for Node.JS used in architect and vfs.",
"version": "0.1.5",
"version": "0.1.6",
"scripts": {
"test": "./test-all.sh"
},
"licenses" : [{

@@ -11,0 +14,0 @@ "type" : "MIT",

9

smith.js

@@ -23,7 +23,8 @@ /*

( // Module boilerplate to support browser globals, node.js and AMD.
(typeof module === "object" && function (m) { module.exports = m(require('events').EventEmitter, require('msgpack-js')); }) ||
(typeof define === "function" && function (m) { define("smith", ["EventEmitter", "msgpack"], m); }) ||
(function (m) { window.smith = m(window.EventEmitter, window.msgpack); })
)(function (EventEmitter, msgpack) {
(typeof module === "object" && function (m) { module.exports = m(require('events'), require('msgpack-js')); }) ||
(typeof define === "function" && function (m) { define("smith", ["events", "msgpack-js"], m); }) ||
(function (m) { window.smith = m(window.events, window.msgpack); })
)(function (events, msgpack) {
"use strict";
var EventEmitter = events.EventEmitter;

@@ -30,0 +31,0 @@ function inherits(Child, Parent) {

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