New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

@zenfs/core

Package Overview
Dependencies
Maintainers
0
Versions
182
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@zenfs/core - npm Package Compare versions

Comparing version

to
1.6.16

3

dist/emulation/promises.js

@@ -929,5 +929,6 @@ var __addDisposableResource = (this && this.__addDisposableResource) || function (env, value, async) {

export function watch(filename, options = {}) {
const context = this;
return {
[Symbol.asyncIterator]() {
const watcher = new FSWatcher(this, filename.toString(), typeof options !== 'string' ? options : { encoding: options });
const watcher = new FSWatcher(context, filename.toString(), typeof options !== 'string' ? options : { encoding: options });
// A queue to hold change events, since we need to resolve them in the async iterator

@@ -934,0 +935,0 @@ const eventQueue = [];

@@ -43,5 +43,5 @@ /* Shared eslint rules */

'@typescript-eslint/no-unsafe-assignment': 'off',
'@typescript-eslint/no-unsafe-return': 'warn',
'@typescript-eslint/no-unsafe-return': 'off',
'@typescript-eslint/no-redundant-type-constituents': 'warn',
'@typescript-eslint/no-unsafe-call': 'warn',
'@typescript-eslint/no-unsafe-call': 'off',
'@typescript-eslint/restrict-plus-operands': 'off',

@@ -48,0 +48,0 @@ '@typescript-eslint/no-base-to-string': 'off',

{
"name": "@zenfs/core",
"version": "1.6.15",
"version": "1.6.16",
"description": "A filesystem, anywhere",

@@ -5,0 +5,0 @@ "funding": {

@@ -19,2 +19,19 @@ import { suite, test } from 'node:test';

});
test('watch should consider context', async () => {
let lastFile: string,
events = 0;
const watcher = c_fs.promises.watch('/', { recursive: true });
(async () => {
for await (const event of watcher) {
lastFile = event.filename!;
if (++events == 2) return;
}
})();
await c_fs.promises.writeFile('/xpto.txt', 'in real root');
assert.strictEqual(lastFile!, 'xpto.txt');
await c_fs.promises.unlink('/xpto.txt');
assert.strictEqual(lastFile, 'xpto.txt');
});
});