Socket
Socket
Sign inDemoInstall

@platform/fs

Package Overview
Dependencies
Maintainers
1
Versions
112
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@platform/fs - npm Package Compare versions

Comparing version 0.6.12 to 0.6.13

24

lib/fs.d.ts

@@ -278,23 +278,2 @@ /// <reference types="node" />

lchmodSync(path: fsextra.PathLike, mode: import("fs").Mode): void;
statSync(path: fsextra.PathLike, options?: (fsextra.StatOptions & {
bigint?: false | undefined;
}) | undefined): fsextra.Stats;
statSync(path: fsextra.PathLike, options: fsextra.StatOptions & {
bigint: true;
}): fsextra.BigIntStats;
statSync(path: fsextra.PathLike, options?: fsextra.StatOptions | undefined): fsextra.Stats | fsextra.BigIntStats;
fstatSync(fd: number, options?: (fsextra.StatOptions & {
bigint?: false | undefined;
}) | undefined): fsextra.Stats;
fstatSync(fd: number, options: fsextra.StatOptions & {
bigint: true;
}): fsextra.BigIntStats;
fstatSync(fd: number, options?: fsextra.StatOptions | undefined): fsextra.Stats | fsextra.BigIntStats;
lstatSync(path: fsextra.PathLike, options?: (fsextra.StatOptions & {
bigint?: false | undefined;
}) | undefined): fsextra.Stats;
lstatSync(path: fsextra.PathLike, options: fsextra.StatOptions & {
bigint: true;
}): fsextra.BigIntStats;
lstatSync(path: fsextra.PathLike, options?: fsextra.StatOptions | undefined): fsextra.Stats | fsextra.BigIntStats;
linkSync(existingPath: fsextra.PathLike, newPath: fsextra.PathLike): void;

@@ -405,4 +384,7 @@ symlinkSync(target: fsextra.PathLike, path: fsextra.PathLike, type?: import("fs").symlink.Type | null | undefined): void;

WriteStream: typeof fsextra.WriteStream;
statSync: fsextra.StatSyncFn<fsextra.PathLike>;
fstatSync: fsextra.StatSyncFn<number>;
lstatSync: fsextra.StatSyncFn<fsextra.PathLike>;
constants: typeof fsextra.constants;
BigIntStats: typeof fsextra.BigIntStats;
};

4

package.json
{
"name": "@platform/fs",
"version": "0.6.12",
"version": "0.6.13",
"description": "POSIX style file-system tools.",

@@ -15,3 +15,3 @@ "main": "lib/index",

"@platform/fs.types": "0.1.8",
"@platform/types": "0.5.20",
"@platform/types": "0.5.21",
"@types/fs-extra": "9.0.11",

@@ -18,0 +18,0 @@ "@types/js-yaml": "4.0.1",

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