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.7 to 0.6.8

26

lib/fs.d.ts

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

lchmodSync(path: fsextra.PathLike, mode: string | number): void;
statSync(path: fsextra.PathLike, options: fsextra.BigIntOptions): fsextra.BigIntStats;
statSync(path: fsextra.PathLike, options: fsextra.StatOptions): fsextra.Stats | fsextra.BigIntStats;
statSync(path: fsextra.PathLike): fsextra.Stats;
fstatSync(fd: number): fsextra.Stats;
lstatSync(path: fsextra.PathLike): fsextra.Stats;
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;

@@ -285,0 +301,0 @@ symlinkSync(target: fsextra.PathLike, path: fsextra.PathLike, type?: "file" | "dir" | "junction" | null | undefined): void;

4

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

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

"@platform/fs.types": "0.1.5",
"@platform/types": "0.5.15",
"@platform/types": "0.5.16",
"@types/fs-extra": "9.0.7",

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

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