Socket
Socket
Sign inDemoInstall

browserify

Package Overview
Dependencies
Maintainers
0
Versions
485
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

browserify - npm Package Compare versions

Comparing version 0.1.0 to 0.1.1

2

package.json
{
"name" : "browserify",
"version" : "0.1.0",
"version" : "0.1.1",
"description" : "Browser-side require() for js directories and npm modules",

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

@@ -145,1 +145,9 @@ Browserify

* require : bundle all of these module names and their dependencies
compatability
=============
Browserify exports a faux `process` object with these attributes:
* nextTick(fn) - does setTimeout(fn, 0)
* version - set to 'browser' for browser code

@@ -1,5 +0,6 @@

if (typeof process === 'undefined') process = {};
if (!process.nextTick) process.nextTick = function (fn) {
setTimeout(fn, 0);
if (typeof process === 'undefined') process = {
nextTick : function (fn) {
setTimeout(fn, 0);
},
version : 'browser'
};
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