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

@bscotch/pathy

Package Overview
Dependencies
Maintainers
0
Versions
29
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@bscotch/pathy - npm Package Compare versions

Comparing version 2.12.0 to 2.12.1

11

dist/pathy.static.js

@@ -297,3 +297,12 @@ import { __decorate, __metadata } from "tslib";

}
const children = await currentPath.listChildren();
let children = [];
try {
children = await currentPath.listChildren();
}
catch (err) {
if (options.onError !== 'throw') {
return;
}
throw err;
}
for (const child of children) {

@@ -300,0 +309,0 @@ if (hasReachedLimit()) {

2

package.json
{
"name": "@bscotch/pathy",
"version": "2.12.0",
"version": "2.12.1",
"description": "A toolkit for simplifying working with paths and files.",

@@ -5,0 +5,0 @@ "keywords": [

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