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

browser-nativefs

Package Overview
Dependencies
Maintainers
1
Versions
32
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

browser-nativefs - npm Package Compare versions

Comparing version 0.10.3 to 0.11.0

4

index.d.ts
/**
* Opens file(s) from disk.
*/
export function fileOpen<M extends boolean>(options?: {
export function fileOpen<M extends boolean | undefined = false>(options?: {
/** Acceptable MIME types. [] */

@@ -13,3 +13,3 @@ mimeTypes?: string[];

multiple?: M;
}): M extends true ? Promise<File[]> : Promise<File>;
}): M extends false | undefined ? Promise<File> : Promise<File[]>;

@@ -16,0 +16,0 @@ /**

{
"name": "browser-nativefs",
"version": "0.10.3",
"version": "0.11.0",
"description": "Native File System API with legacy fallback in the browser.",

@@ -39,9 +39,9 @@ "browser": "dist/index.js",

"devDependencies": {
"eslint": "^7.8.1",
"eslint": "^7.11.0",
"eslint-config-google": "^0.14.0",
"eslint-config-prettier": "^6.11.0",
"eslint-config-prettier": "^6.12.0",
"http-server": "^0.12.3",
"prettier": "^2.1.1",
"prettier": "^2.1.2",
"shx": "^0.3.2",
"terser": "^5.3.0"
"terser": "^5.3.5"
},

@@ -48,0 +48,0 @@ "eslintConfig": {

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

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