UNPKG

sflow

Version:

sflow is a powerful and highly-extensible library designed for processing and manipulating streams of data effortlessly. Inspired by the functional programming paradigm, it provides a rich set of utilities for transforming streams, including chunking, fil

81 lines (77 loc) 2.87 kB
import replaceAsync from "string-replace-async"; import { maps } from "./maps"; export const matchs: { (matcher: { [Symbol.match](string: string): RegExpMatchArray | null; }): TransformStream<string, RegExpMatchArray | null>; } = (matcher) => { return new TransformStream({ transform: (chunk, ctrl) => ctrl.enqueue(chunk.match(matcher)), }); }; export const matchAlls: { (regexp: RegExp): TransformStream<string, IterableIterator<RegExpExecArray>>; } = (matcher) => { return new TransformStream({ transform: (chunk, ctrl) => ctrl.enqueue(chunk.matchAll(matcher)), }); }; export const replaces: { /** * Passes a string and {@linkcode replaceValue} to the `[Symbol.replace]` method on {@linkcode searchValue}. This method is expected to implement its own replacement algorithm. * @param searchValue An object that supports searching for and replacing matches within a string. * @param replaceValue The replacement text. */ ( searchValue: { [Symbol.replace](string: string, replaceValue: string): string; }, replaceValue: string, ): TransformStream<string, string>; /** * Replaces text in a string, using an object that supports replacement within a string. * @param searchValue A object can search for and replace matches within a string. * @param replacer A function that returns the replacement text. */ ( searchValue: string | RegExp, replacer: (substring: string, ...args: any[]) => Promise<string> | string, ): TransformStream<string, string>; } = (searchValue, replacement) => { return maps((s) => typeof replacement === "string" ? s.replace( searchValue as { [Symbol.replace](string: string, replaceValue: string): string; }, replacement, ) : replaceAsync(s, searchValue as string | RegExp, replacement), ); }; export const replaceAlls: { /** * Replace all instances of a substring in a string, using a regular expression or search string. * @param searchValue A string to search for. * @param replaceValue A string containing the text to replace for every successful match of searchValue in this string. */ ( searchValue: string | RegExp, replaceValue: string, ): TransformStream<string, string>; /** * Replace all instances of a substring in a string, using a regular expression or search string. * @param searchValue A string to search for. * @param replacer A function that returns the replacement text. */ ( searchValue: string | RegExp, replacer: (substring: string, ...args: any[]) => Promise<string> | string, ): TransformStream<string, string>; } = (searchValue, replacement) => { return maps((s) => typeof replacement === "string" ? s.replaceAll(searchValue, replacement) : replaceAsync(s, searchValue, replacement), ); };