Socket
Socket
Sign inDemoInstall

memfs

Package Overview
Dependencies
12
Maintainers
1
Versions
145
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

Comparing version 4.6.0 to 4.6.1

22

lib/constants.d.ts

@@ -51,14 +51,14 @@ export declare const constants: {

export declare const enum S {
ISUID = 2048,
ISGID = 1024,
ISVTX = 512,
IRUSR = 256,
IWUSR = 128,
IXUSR = 64,
IRGRP = 32,
IWGRP = 16,
IXGRP = 8,
IROTH = 4,
IWOTH = 2,
ISUID = 2048,// (04000) set-user-ID (set process effective user ID on execve(2))
ISGID = 1024,// (02000) set-group-ID (set process effective group ID on execve(2); mandatory locking, as described in fcntl(2); take a new file's group from parent directory, as described in chown(2) and mkdir(2))
ISVTX = 512,// (01000) sticky bit (restricted deletion flag, as described in unlink(2))
IRUSR = 256,// (00400) read by owner
IWUSR = 128,// (00200) write by owner
IXUSR = 64,// (00100) execute/search by owner
IRGRP = 32,// (00040) read by group
IWGRP = 16,// (00020) write by group
IXGRP = 8,// (00010) execute/search by group
IROTH = 4,// (00004) read by others
IWOTH = 2,// (00002) write by others
IXOTH = 1
}

@@ -297,3 +297,5 @@ "use strict";

const names = list.map(item => item.name);
expect(names).toStrictEqual(['empty-folder', 'f.html', 'folder']);
expect(names.includes('folder')).toBe(true);
expect(names.includes('empty-folder')).toBe(true);
expect(names.includes('f.html')).toBe(true);
expect((_a = list.find(item => item.name === 'folder')) === null || _a === void 0 ? void 0 : _a.isDirectory()).toBe(true);

@@ -300,0 +302,0 @@ expect((_b = list.find(item => item.name === 'empty-folder')) === null || _b === void 0 ? void 0 : _b.isDirectory()).toBe(true);

import { CborEncoder } from 'json-joy/es6/json-pack/cbor/CborEncoder';
import { CborDecoder } from 'json-joy/es6/json-pack/cbor/CborDecoder';
export declare const encoder: CborEncoder;
export declare const decoder: CborDecoder;
export declare const encoder: CborEncoder<import("json-joy/es6/util/buffers").IWriter & import("json-joy/es6/util/buffers").IWriterGrowable>;
export declare const decoder: CborDecoder<import("json-joy/es6/util/buffers").IReader & import("json-joy/es6/util/buffers").IReaderResettable>;
/// <reference types="node" />
/// <reference types="node" />
import { Buffer } from 'buffer';

@@ -3,0 +4,0 @@ declare const bufferAllocUnsafe: (size: number) => Buffer;

{
"name": "memfs",
"version": "4.6.0",
"version": "4.6.1",
"description": "In-memory file-system with Node's fs API.",

@@ -124,3 +124,3 @@ "keywords": [

"dependencies": {
"json-joy": "^9.2.0",
"json-joy": "^11.0.0",
"thingies": "^1.11.1"

@@ -143,3 +143,3 @@ },

"prettier": "^2.7.1",
"pretty-quick": "^3.1.3",
"pretty-quick": "^4.0.0",
"process": "^0.11.10",

@@ -146,0 +146,0 @@ "readable-stream": "^4.4.0",

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

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

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

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

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

Sorry, the diff of this file is not supported yet

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc