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

jsforce

Package Overview
Dependencies
Maintainers
1
Versions
102
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

jsforce - npm Package Compare versions

Comparing version 1.6.3 to 1.6.4

lib/_required.js

4

lib/core.js

@@ -9,3 +9,3 @@ /**

var jsforce = new EventEmitter();
var jsforce = module.exports = new EventEmitter();
var pkg = require('../package.json');

@@ -19,3 +19,1 @@ jsforce.VERSION = pkg.version;

jsforce.require = require('./require');
module.exports = jsforce;
'use strict';
// As The webpack builder scans all script files under the directory where dynamic require resides,
// The code is separated to the dedicated directory.
module.exports = require('./dynreq/require');
var required = require('./_required');
module.exports = function(name) {
if (name === './jsforce' || name === 'jsforce') {
name = './core';
}
var m = required[name];
if (typeof m === 'undefined') {
throw new Error("Cannot find module '" + name + "'");
}
return m;
};

@@ -13,3 +13,3 @@ {

"homepage": "http://github.com/jsforce/jsforce",
"version": "1.6.3",
"version": "1.6.4",
"repository": {

@@ -93,3 +93,3 @@ "type": "git",

"require-swapper": "^0.1.6",
"testem": "^1.6.0",
"testem": "^1.7.1",
"vinyl-buffer": "^1.0.0",

@@ -96,0 +96,0 @@ "vinyl-source-stream": "^1.1.0",

Sorry, the diff of this file is too big to display

Sorry, the diff of this file is too big to display

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is too big to display

Sorry, the diff of this file is too big to display

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