New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

mobiletto-base

Package Overview
Dependencies
Maintainers
1
Versions
51
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

mobiletto-base - npm Package Compare versions

Comparing version 2.0.16 to 2.0.17

12

lib/cjs/functions.js

@@ -61,2 +61,14 @@ "use strict";

const results = yield client.driver_list(path, recursive, visitor);
if (results.length === 0) {
// try single meta, is this a file?
try {
const singleFileMeta = yield client.driver_metadata(path);
if (singleFileMeta) {
results.push(singleFileMeta);
}
}
catch (sfmErrIgnored) {
// ignore error, we tried
}
}
if (cache) {

@@ -63,0 +75,0 @@ cache.set(path, results).then(() => {

@@ -55,2 +55,14 @@ var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, generator) {

const results = yield client.driver_list(path, recursive, visitor);
if (results.length === 0) {
// try single meta, is this a file?
try {
const singleFileMeta = yield client.driver_metadata(path);
if (singleFileMeta) {
results.push(singleFileMeta);
}
}
catch (sfmErrIgnored) {
// ignore error, we tried
}
}
if (cache) {

@@ -57,0 +69,0 @@ cache.set(path, results).then(() => {

2

package.json
{
"name": "mobiletto-base",
"version": "2.0.16",
"version": "2.0.17",
"type": "module",

@@ -5,0 +5,0 @@ "description": "A storage layer that presents a uniform interface to Amazon S3, Backblaze B2, local and other storage systems.",

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