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

@capacitor/filesystem

Package Overview
Dependencies
Maintainers
8
Versions
740
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@capacitor/filesystem - npm Package Compare versions

Comparing version 7.0.0-nightly-20250103T150519.0 to 7.0.0-nightly-20250106T150520.0

10

dist/plugin.cjs.js

@@ -153,3 +153,3 @@ 'use strict';

blob = await response.blob();
else if (!(response === null || response === void 0 ? void 0 : response.body))
else if (!(response === null || response === undefined ? undefined : response.body))
blob = new Blob();

@@ -167,3 +167,3 @@ else {

chunks.push(value);
bytes += (value === null || value === void 0 ? void 0 : value.length) || 0;
bytes += (value === null || value === undefined ? undefined : value.length) || 0;
const status = {

@@ -188,4 +188,4 @@ url: options.url,

path: options.path,
directory: (_a = options.directory) !== null && _a !== void 0 ? _a : undefined,
recursive: (_b = options.recursive) !== null && _b !== void 0 ? _b : false,
directory: (_a = options.directory) !== null && _a !== undefined ? _a : undefined,
recursive: (_b = options.recursive) !== null && _b !== undefined ? _b : false,
data: blob,

@@ -502,3 +502,3 @@ });

return {
uri: (entry === null || entry === void 0 ? void 0 : entry.path) || path,
uri: (entry === null || entry === undefined ? undefined : entry.path) || path,
};

@@ -505,0 +505,0 @@ }

@@ -152,3 +152,3 @@ var capacitorFilesystem = (function (exports, core) {

blob = await response.blob();
else if (!(response === null || response === void 0 ? void 0 : response.body))
else if (!(response === null || response === undefined ? undefined : response.body))
blob = new Blob();

@@ -166,3 +166,3 @@ else {

chunks.push(value);
bytes += (value === null || value === void 0 ? void 0 : value.length) || 0;
bytes += (value === null || value === undefined ? undefined : value.length) || 0;
const status = {

@@ -187,4 +187,4 @@ url: options.url,

path: options.path,
directory: (_a = options.directory) !== null && _a !== void 0 ? _a : undefined,
recursive: (_b = options.recursive) !== null && _b !== void 0 ? _b : false,
directory: (_a = options.directory) !== null && _a !== undefined ? _a : undefined,
recursive: (_b = options.recursive) !== null && _b !== undefined ? _b : false,
data: blob,

@@ -501,3 +501,3 @@ });

return {
uri: (entry === null || entry === void 0 ? void 0 : entry.path) || path,
uri: (entry === null || entry === undefined ? undefined : entry.path) || path,
};

@@ -504,0 +504,0 @@ }

{
"name": "@capacitor/filesystem",
"version": "7.0.0-nightly-20250103T150519.0",
"version": "7.0.0-nightly-20250106T150520.0",
"description": "The Filesystem API provides a NodeJS-like API for working with files on the device.",

@@ -5,0 +5,0 @@ "main": "dist/plugin.cjs.js",

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