Socket
Socket
Sign inDemoInstall

memfs

Package Overview
Dependencies
Maintainers
1
Versions
152
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

memfs - npm Package Compare versions

Comparing version 3.4.4 to 3.4.5

1

lib/node.d.ts
/// <reference types="node" />
/// <reference types="node" />
import { Volume } from './volume';

@@ -3,0 +4,0 @@ import { EventEmitter } from 'events';

12

lib/node.js

@@ -163,7 +163,7 @@ "use strict";

if (gid === void 0) { gid = process_1.default.getgid(); }
if (this.perm & 4 /* IROTH */) {
if (this.perm & 4 /* S.IROTH */) {
return true;
}
if (gid === this.gid) {
if (this.perm & 32 /* IRGRP */) {
if (this.perm & 32 /* S.IRGRP */) {
return true;

@@ -173,3 +173,3 @@ }

if (uid === this.uid) {
if (this.perm & 256 /* IRUSR */) {
if (this.perm & 256 /* S.IRUSR */) {
return true;

@@ -183,7 +183,7 @@ }

if (gid === void 0) { gid = process_1.default.getgid(); }
if (this.perm & 2 /* IWOTH */) {
if (this.perm & 2 /* S.IWOTH */) {
return true;
}
if (gid === this.gid) {
if (this.perm & 16 /* IWGRP */) {
if (this.perm & 16 /* S.IWGRP */) {
return true;

@@ -193,3 +193,3 @@ }

if (uid === this.uid) {
if (this.perm & 128 /* IWUSR */) {
if (this.perm & 128 /* S.IWUSR */) {
return true;

@@ -196,0 +196,0 @@ }

/// <reference types="node" />
/// <reference types="node" />
import { Volume, TData, TMode, TFlags, TFlagsCopy, TTime, IOptions, IAppendFileOptions, IMkdirOptions, IReaddirOptions, IReadFileOptions, IRealpathOptions, IWriteFileOptions, IStatOptions, IRmOptions, IFStatOptions } from './volume';

@@ -3,0 +4,0 @@ import Stats from './Stats';

/// <reference types="node" />
/// <reference types="node" />
/// <reference types="node" />
/// <reference types="node" />
import { PathLike, symlink } from 'fs';

@@ -3,0 +6,0 @@ import { Node, Link, File } from './node';

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

@@ -32,15 +32,15 @@ "main": "lib/index.js",

"@semantic-release/npm": "9.0.1",
"@types/jest": "27.5.0",
"@types/jest": "27.5.2",
"@types/node": "10.17.60",
"husky": "7.0.4",
"jest": "28.0.3",
"prettier": "2.6.2",
"husky": "8.0.1",
"jest": "28.1.1",
"prettier": "2.7.1",
"pretty-quick": "3.1.3",
"rimraf": "3.0.2",
"semantic-release": "19.0.2",
"ts-jest": "28.0.1",
"ts-node": "10.7.0",
"semantic-release": "19.0.3",
"ts-jest": "28.0.5",
"ts-node": "10.8.1",
"tslint": "5.20.1",
"tslint-config-common": "1.6.0",
"typescript": "4.6.4"
"typescript": "4.7.4"
},

@@ -47,0 +47,0 @@ "config": {

Sorry, the diff of this file is too big to display

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