Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix: use internal buffer instead of global Buffer #977

Merged
merged 1 commit into from Feb 16, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
1 change: 1 addition & 0 deletions src/fsa-to-node/FsaNodeFs.ts
@@ -1,5 +1,6 @@
import * as optHelpers from '../node/options';
import * as util from '../node/util';
import { Buffer } from '../internal/buffer';
import { FsPromises } from '../node/FsPromises';
import { pathToLocation, testDirectoryIsWritable } from './util';
import { ERRSTR, MODE } from '../node/constants';
Expand Down
1 change: 1 addition & 0 deletions src/node-to-fsa/NodeFileSystemSyncAccessHandle.ts
@@ -1,4 +1,5 @@
import { assertCanWrite } from './util';
import { Buffer } from '../internal/buffer';
import type { FileSystemReadWriteOptions, IFileSystemSyncAccessHandle } from '../fsa/types';
import type { NodeFsaContext, NodeFsaFs } from './types';

Expand Down
1 change: 1 addition & 0 deletions src/node-to-fsa/NodeFileSystemWritableFileStream.ts
@@ -1,3 +1,4 @@
import { Buffer } from '../internal/buffer';
import type { Data, FileSystemWritableFileStreamParams, IFileSystemWritableFileStream } from '../fsa/types';
import type { IFileHandle } from '../node/types/misc';
import type { NodeFsaFs } from './types';
Expand Down
2 changes: 1 addition & 1 deletion src/node.ts
@@ -1,5 +1,5 @@
import process from './process';
import { bufferAllocUnsafe, bufferFrom } from './internal/buffer';
import { Buffer, bufferAllocUnsafe, bufferFrom } from './internal/buffer';
import { constants, S } from './constants';
import { Volume } from './volume';
import { EventEmitter } from 'events';
Expand Down
1 change: 1 addition & 0 deletions src/node/util.ts
@@ -1,5 +1,6 @@
import { ERRSTR, FLAGS } from './constants';
import * as errors from '../internal/errors';
import { Buffer } from '../internal/buffer';
import type { FsCallbackApi } from './types';
import type * as misc from './types/misc';
import { ENCODING_UTF8, TEncodingExtended } from '../encoding';
Expand Down
1 change: 0 additions & 1 deletion src/webfs/index.ts
@@ -1,5 +1,4 @@
(<any>self).process = require('process/browser');
(<any>self).Buffer = require('buffer').Buffer;

import { FsaNodeFs, FsaNodeSyncAdapterWorker } from '../fsa-to-node';
import { FsaNodeSyncWorker } from '../../src/fsa-to-node/worker/FsaNodeSyncWorker';
Expand Down