Cleaned up repo and separated both bots into their respective folders
This commit is contained in:
parent
5414de60ca
commit
a9fda1fcb7
3134 changed files with 382980 additions and 31 deletions
23
sidBot-js/node_modules/strtok3/lib/core.js
generated
vendored
Normal file
23
sidBot-js/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);
|
||||
}
|
Reference in a new issue