Socket
Socket
Sign inDemoInstall

simple-git

Package Overview
Dependencies
Maintainers
1
Versions
260
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

simple-git - npm Package Compare versions

Comparing version 1.36.0 to 1.37.0

2

package.json
{
"name": "simple-git",
"description": "Simple GIT interface for node.js",
"version": "1.36.0",
"version": "1.37.0",
"author": "Steve King <steve@mydev.co>",

@@ -6,0 +6,0 @@ "contributors": [

@@ -483,3 +483,3 @@ (function () {

return this.remote(args, function (err, data) {
next(err, !err && function () {
next && next(err, !err && function () {
return data.trim().split('\n').reduce(function (remotes, remote) {

@@ -486,0 +486,0 @@ var detail = remote.trim().split(/\s+/);

@@ -646,2 +646,17 @@

');
},
'Does not throw when there is no supplied function': function (test) {
git.getRemotes(true);
test.doesNotThrow(function () {
closeWith('\
origin s://u@d.com/u/repo.git (fetch)\n\
origin s://u@d.com/u/repo.git (push)\n\
upstream s://u@d.com/another/repo.git (fetch)\n\
upstream s://u@d.com/another/repo.git (push)\n\
');
});
test.done();
}

@@ -648,0 +663,0 @@ };

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