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

@es-git/walkers-mixin

Package Overview
Dependencies
Maintainers
1
Versions
16
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@es-git/walkers-mixin - npm Package Compare versions

Comparing version 0.5.0 to 0.5.1

2

package.json
{
"name": "@es-git/walkers-mixin",
"version": "0.5.0",
"version": "0.5.1",
"description": "",

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

@@ -30,3 +30,6 @@ # walkers-mixin

}
for await(const file of repo.walkTree(await repo.getRef('refs/heads/master'))){
for await(const fileOrFolder of repo.walkTree(await repo.getRef('refs/heads/master'))){
console.log(fileOrFolder.path.join('/'));
}
for await(const file of repo.listFiles(await repo.getRef('refs/heads/master'))){
console.log(file.path.join('/'));

@@ -43,3 +46,4 @@ }

walkCommits(...hash : Hash[]) : AsyncIterableIterator<HashAndCommitObject>
walkTree(hash : Hash, iterateFolders? : boolean) : AsyncIterableIterator<HashModePath>
walkTree(hash : Hash) : AsyncIterableIterator<HashModePath>
listFiles(hash: Hash): AsyncIterableIterator<HashModePath>
}

@@ -46,0 +50,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