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

pull-git-repo

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

pull-git-repo - npm Package Compare versions

Comparing version 0.2.2 to 0.2.3

17

index.js

@@ -468,2 +468,10 @@ var buffered = require('pull-buffered')

R.hasObjectFromPack = function (hash, cb) {
if (hash in this._cachedObjects) return cb(null, true)
var self = this
this.findPackedObject(hash, function (err, offset) {
cb(err, !!offset)
})
}
R.getPackfileBufs = function (packId, cb) {

@@ -518,1 +526,10 @@ this.getPackfile(packId, function (err, packfile) {

}
R.hasObjectFromAny = function (hash, cb) {
this.hasObject(hash, function (err, has) {
if (has)
cb(null, true)
else
this.hasObjectFromPack(hash, cb)
}.bind(this))
}

2

package.json
{
"name": "pull-git-repo",
"version": "0.2.2",
"version": "0.2.3",
"description": "utility methods for git repos using pull streams",

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

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