commit
This commit is contained in:
parent
a15c733e45
commit
2a5130cbda
2838 changed files with 288613 additions and 0 deletions
23
node_modules/strtok3/lib/core.js
generated
vendored
Normal file
23
node_modules/strtok3/lib/core.js
generated
vendored
Normal file
|
@ -0,0 +1,23 @@
|
|||
import { ReadStreamTokenizer } from './ReadStreamTokenizer.js';
|
||||
import { BufferTokenizer } from './BufferTokenizer.js';
|
||||
export { EndOfStreamError } from 'peek-readable';
|
||||
/**
|
||||
* Construct ReadStreamTokenizer from given Stream.
|
||||
* Will set fileSize, if provided given Stream has set the .path property/
|
||||
* @param stream - Read from Node.js Stream.Readable
|
||||
* @param fileInfo - Pass the file information, like size and MIME-type of the corresponding stream.
|
||||
* @returns ReadStreamTokenizer
|
||||
*/
|
||||
export function fromStream(stream, fileInfo) {
|
||||
fileInfo = fileInfo ? fileInfo : {};
|
||||
return new ReadStreamTokenizer(stream, fileInfo);
|
||||
}
|
||||
/**
|
||||
* Construct ReadStreamTokenizer from given Buffer.
|
||||
* @param uint8Array - Uint8Array to tokenize
|
||||
* @param fileInfo - Pass additional file information to the tokenizer
|
||||
* @returns BufferTokenizer
|
||||
*/
|
||||
export function fromBuffer(uint8Array, fileInfo) {
|
||||
return new BufferTokenizer(uint8Array, fileInfo);
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue