@andrew_l/toolkit 0.3.5 → 0.3.6
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.cjs +45 -13
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +28 -3
- package/dist/index.d.mts +28 -3
- package/dist/index.d.ts +28 -3
- package/dist/index.mjs +43 -13
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
package/dist/index.d.cts
CHANGED
|
@@ -1151,6 +1151,32 @@ declare function compareBytes(a: Uint8Array, b: Uint8Array): boolean;
|
|
|
1151
1151
|
*/
|
|
1152
1152
|
declare function concatenateBytes(a: Uint8Array, b: Uint8Array): Uint8Array;
|
|
1153
1153
|
|
|
1154
|
+
/**
|
|
1155
|
+
* Decode a run-length encoded buffer.
|
|
1156
|
+
*
|
|
1157
|
+
* Decodes `[value, count]` pairs back into runs of `value`.
|
|
1158
|
+
* All other bytes pass through unchanged.
|
|
1159
|
+
*
|
|
1160
|
+
* @param buf - RLE-encoded buffer to decode
|
|
1161
|
+
* @param value - Byte value that was compressed (default: 0)
|
|
1162
|
+
* @returns Decoded buffer
|
|
1163
|
+
* @group Binary
|
|
1164
|
+
*/
|
|
1165
|
+
declare function rleDecode(buf: Uint8Array, value?: number): Uint8Array;
|
|
1166
|
+
|
|
1167
|
+
/**
|
|
1168
|
+
* Run-length encode a buffer, compressing runs of a specific byte value.
|
|
1169
|
+
*
|
|
1170
|
+
* Runs of `value` are encoded as [value, count] pairs (count ≤ 255).
|
|
1171
|
+
* All other bytes pass through unchanged.
|
|
1172
|
+
*
|
|
1173
|
+
* @param buf - Input buffer to encode
|
|
1174
|
+
* @param value - Byte value to compress runs of (default: 0)
|
|
1175
|
+
* @returns RLE-encoded buffer
|
|
1176
|
+
* @group Binary
|
|
1177
|
+
*/
|
|
1178
|
+
declare function rleEncode(buf: Uint8Array, value?: number): Uint8Array;
|
|
1179
|
+
|
|
1154
1180
|
/**
|
|
1155
1181
|
* Converts a `Uint16Array` into a `Uint8Array`.
|
|
1156
1182
|
*
|
|
@@ -2904,10 +2930,9 @@ declare class AppError extends Error {
|
|
|
2904
2930
|
}
|
|
2905
2931
|
|
|
2906
2932
|
/**
|
|
2907
|
-
* Same as `AssertionError` but for browser env.
|
|
2908
2933
|
* @group Errors
|
|
2909
2934
|
*/
|
|
2910
|
-
declare class
|
|
2935
|
+
declare class AssertionError extends Error {
|
|
2911
2936
|
/**
|
|
2912
2937
|
* Set to the `actual` argument for methods such as {@link assert.strictEqual()}.
|
|
2913
2938
|
*/
|
|
@@ -5823,4 +5848,4 @@ declare function wrapText(value: string, maxLength?: number): string;
|
|
|
5823
5848
|
*/
|
|
5824
5849
|
declare function toError<T>(value: T, unknownMessage?: string): T extends Error ? T : Error;
|
|
5825
5850
|
|
|
5826
|
-
export { type AnyFunction, AppError, type AppErrorOptions, type ArgumentsType, type Arrayable, AsyncIterableQueue, type Awaitable, type Base64ToBytesOptions, type BaseX, BitPack, BitUnpack,
|
|
5851
|
+
export { type AnyFunction, AppError, type AppErrorOptions, type ArgumentsType, type Arrayable, AssertionError, AsyncIterableQueue, type Awaitable, type Base64ToBytesOptions, type BaseX, BitPack, BitUnpack, type BytesToBase64Options, CancellablePromise, type CatchErrorResult, Color, type ColorChannels, ColorParser, type Data, type DateObject, type DateObjectInput, type DebouncedFunction, type DeepPartial, type DeepReadonly, type Defer, instance as EJSON, EJSON as EJSONInstance, EJSONStream, type EJSONStreamOptions, type EJSONStreamOptionsWithPayload, type EJSONType, type EnvParser, type ExecResult, type ExecResultToSkip, type ExecResultToSuccess, type ExecSkip, type ExecSuccess, FindMean, FixedMap, FixedWeakMap, Fn, type FormatMoney, type FormatNumber, type FunctionArgs, type GenericObject, type IfAny, type IsAny, type LiteralUnion, type Logger, LruCache, type Nothing, type OverwriteWith, type Prettify, type Primitive, type PromisifyFn, Queue, type RandomizerOptions, ResourcePool, type ResourcePoolEventMap, type ResourcePoolOptions, type RetryOnErrorConfig, type SecureCustomizerOptions, type SelectOptionItem, type SelectOptions, type SimpleDefaultEventMap, SimpleEventEmitter, type SimpleEventMap, SortedArray, type SortedArrayCompareFn, _default as TWEMOJI_REGEX, type ThemeConfig, type ThrottledFunction, TimeBucket, type TimeBucketOptions, type TimeObject, type TimeObjectInput, TimeSpan, type TimeSpanUnit, type TimeString, type TimeValue, type TimestampMsInput, type TypeOf, type TypeOfMap, type ValuesOfObject, type WithCache, type WithCacheBucketBatchOptions, type WithCacheBucketOptions, type WithCacheFixedOptions, type WithCacheLruOptions, type WithCacheOptions, type WithCachePointer, type WithCacheResult, type WithCacheStorage, type WithCode, type WithCustomizer, type WithCustomizerFactory, type WithCustomizerValue, type WrrItem, alpha, arrayable, assert, asyncFilter, asyncFind, asyncForEach, asyncMap, avg, avgCircular, base62, base62Fast, base64, base64ToBytes, base64url, basex, bigIntBytes, bigIntFromBytes, bitPack, bitUnpack, blendColors, buildCssColor, bytesToBase64, cache, cacheBucket, cacheFixed, cacheLRU, camelCase, capitalize, captureStackTrace, catchError, channelsToHSL, channelsToHex, channelsToRGB, checkBitmask, chunk, chunkSeries, clamp, cleanEmpty, cleanObject, colorToChannels, compareBytes, concatenateBytes, contrastRatio, convertToUnit, crc32, createCustomizer, createCustomizerFactory, createDateObject, createDeepCloneWith, createEJSON, createEJSONStream, createEnvParser, createFunction, createRandomizer, createSecureCustomizer, createTimeObject, createTimeSpan, createWithCache, cssVariable, dateInDays, dateInSeconds, debounce, deepAssign, deepClone, deepCloneWith, deepDefaults, deepFreeze, def, defer, delay, difference, dropCache, env, escapeHtml, escapeNumeric, escapeRegExp, fastIdle, fastIdlePromise, fastRaf, findMean, flagsToMap, flatten, formatMoney, formatNumber, get, getFileExtension, getFileName, getInitials, getMostSpecificPaths, getRandomInt, getRandomTime, getWords, groupBy, has, hasOwn, hasProtocol, hex, hexToChannels, hmToSeconds, hslToChannels, humanFileSize, humanize, interpolateColor, intersection, intersectionBy, isBigInt, isBoolean, isCached, isClient, isColorChannels, isCustomizerFactory, isDate, isDateObject, isDef, isEmpty, isEqual, isError, isFunction, isInfinity, isMap, isNode, isNullOrUndefined, isNumber, isObject, isOneEmoji, isPlainObject, isPrimitive, isPromise, isRegExp, isSet, isSkip, isString, isSuccess, isSymbol, isTimeObject, isTimeString, isTimeValue, isValidWeekDay, isWeakMap, isWeakSet, isWithCache, isoToFlagEmoji, kebabCase, keyBy, logger, loggerSetLevel, lowerCase, luminance, maskingEmail, maskingPhone, maskingWords, nextTickIteration, noop, objectId, omit, omitPrefixed, orderBy, parseAllNumbers, parseAlpha, parsePercentage, percentOf, pick, pickPrefixed, qs, rafPromise, randomString, removeVS16s, retryOnError, rgbToChannels, rleDecode, rleEncode, round2digits, secondsToHm, set, shuffle, snakeCase, sprintf, startCase, strAssign, sum, textDecoder, textEncoder, throttle, timeFromMinutes, timeStringify, timeToMinutes, timeout, timestamp, timestampMs, timestampToDate, tintedTextColor, toError, toMap, truncate, typeOf, uint16ToUint8, uint32ToUint8, uint8ToUint16, uint8ToUint32, unflatten, union, uniq, uniqBy, unset, weeksInYear, weightedRoundRobin, withCache, withCacheBucket, withCacheBucketBatch, withCacheFixed, withCacheLRU, withDeepClone, withPointerCache, withResolve, wrapText };
|
package/dist/index.d.mts
CHANGED
|
@@ -1151,6 +1151,32 @@ declare function compareBytes(a: Uint8Array, b: Uint8Array): boolean;
|
|
|
1151
1151
|
*/
|
|
1152
1152
|
declare function concatenateBytes(a: Uint8Array, b: Uint8Array): Uint8Array;
|
|
1153
1153
|
|
|
1154
|
+
/**
|
|
1155
|
+
* Decode a run-length encoded buffer.
|
|
1156
|
+
*
|
|
1157
|
+
* Decodes `[value, count]` pairs back into runs of `value`.
|
|
1158
|
+
* All other bytes pass through unchanged.
|
|
1159
|
+
*
|
|
1160
|
+
* @param buf - RLE-encoded buffer to decode
|
|
1161
|
+
* @param value - Byte value that was compressed (default: 0)
|
|
1162
|
+
* @returns Decoded buffer
|
|
1163
|
+
* @group Binary
|
|
1164
|
+
*/
|
|
1165
|
+
declare function rleDecode(buf: Uint8Array, value?: number): Uint8Array;
|
|
1166
|
+
|
|
1167
|
+
/**
|
|
1168
|
+
* Run-length encode a buffer, compressing runs of a specific byte value.
|
|
1169
|
+
*
|
|
1170
|
+
* Runs of `value` are encoded as [value, count] pairs (count ≤ 255).
|
|
1171
|
+
* All other bytes pass through unchanged.
|
|
1172
|
+
*
|
|
1173
|
+
* @param buf - Input buffer to encode
|
|
1174
|
+
* @param value - Byte value to compress runs of (default: 0)
|
|
1175
|
+
* @returns RLE-encoded buffer
|
|
1176
|
+
* @group Binary
|
|
1177
|
+
*/
|
|
1178
|
+
declare function rleEncode(buf: Uint8Array, value?: number): Uint8Array;
|
|
1179
|
+
|
|
1154
1180
|
/**
|
|
1155
1181
|
* Converts a `Uint16Array` into a `Uint8Array`.
|
|
1156
1182
|
*
|
|
@@ -2904,10 +2930,9 @@ declare class AppError extends Error {
|
|
|
2904
2930
|
}
|
|
2905
2931
|
|
|
2906
2932
|
/**
|
|
2907
|
-
* Same as `AssertionError` but for browser env.
|
|
2908
2933
|
* @group Errors
|
|
2909
2934
|
*/
|
|
2910
|
-
declare class
|
|
2935
|
+
declare class AssertionError extends Error {
|
|
2911
2936
|
/**
|
|
2912
2937
|
* Set to the `actual` argument for methods such as {@link assert.strictEqual()}.
|
|
2913
2938
|
*/
|
|
@@ -5823,4 +5848,4 @@ declare function wrapText(value: string, maxLength?: number): string;
|
|
|
5823
5848
|
*/
|
|
5824
5849
|
declare function toError<T>(value: T, unknownMessage?: string): T extends Error ? T : Error;
|
|
5825
5850
|
|
|
5826
|
-
export { type AnyFunction, AppError, type AppErrorOptions, type ArgumentsType, type Arrayable, AsyncIterableQueue, type Awaitable, type Base64ToBytesOptions, type BaseX, BitPack, BitUnpack,
|
|
5851
|
+
export { type AnyFunction, AppError, type AppErrorOptions, type ArgumentsType, type Arrayable, AssertionError, AsyncIterableQueue, type Awaitable, type Base64ToBytesOptions, type BaseX, BitPack, BitUnpack, type BytesToBase64Options, CancellablePromise, type CatchErrorResult, Color, type ColorChannels, ColorParser, type Data, type DateObject, type DateObjectInput, type DebouncedFunction, type DeepPartial, type DeepReadonly, type Defer, instance as EJSON, EJSON as EJSONInstance, EJSONStream, type EJSONStreamOptions, type EJSONStreamOptionsWithPayload, type EJSONType, type EnvParser, type ExecResult, type ExecResultToSkip, type ExecResultToSuccess, type ExecSkip, type ExecSuccess, FindMean, FixedMap, FixedWeakMap, Fn, type FormatMoney, type FormatNumber, type FunctionArgs, type GenericObject, type IfAny, type IsAny, type LiteralUnion, type Logger, LruCache, type Nothing, type OverwriteWith, type Prettify, type Primitive, type PromisifyFn, Queue, type RandomizerOptions, ResourcePool, type ResourcePoolEventMap, type ResourcePoolOptions, type RetryOnErrorConfig, type SecureCustomizerOptions, type SelectOptionItem, type SelectOptions, type SimpleDefaultEventMap, SimpleEventEmitter, type SimpleEventMap, SortedArray, type SortedArrayCompareFn, _default as TWEMOJI_REGEX, type ThemeConfig, type ThrottledFunction, TimeBucket, type TimeBucketOptions, type TimeObject, type TimeObjectInput, TimeSpan, type TimeSpanUnit, type TimeString, type TimeValue, type TimestampMsInput, type TypeOf, type TypeOfMap, type ValuesOfObject, type WithCache, type WithCacheBucketBatchOptions, type WithCacheBucketOptions, type WithCacheFixedOptions, type WithCacheLruOptions, type WithCacheOptions, type WithCachePointer, type WithCacheResult, type WithCacheStorage, type WithCode, type WithCustomizer, type WithCustomizerFactory, type WithCustomizerValue, type WrrItem, alpha, arrayable, assert, asyncFilter, asyncFind, asyncForEach, asyncMap, avg, avgCircular, base62, base62Fast, base64, base64ToBytes, base64url, basex, bigIntBytes, bigIntFromBytes, bitPack, bitUnpack, blendColors, buildCssColor, bytesToBase64, cache, cacheBucket, cacheFixed, cacheLRU, camelCase, capitalize, captureStackTrace, catchError, channelsToHSL, channelsToHex, channelsToRGB, checkBitmask, chunk, chunkSeries, clamp, cleanEmpty, cleanObject, colorToChannels, compareBytes, concatenateBytes, contrastRatio, convertToUnit, crc32, createCustomizer, createCustomizerFactory, createDateObject, createDeepCloneWith, createEJSON, createEJSONStream, createEnvParser, createFunction, createRandomizer, createSecureCustomizer, createTimeObject, createTimeSpan, createWithCache, cssVariable, dateInDays, dateInSeconds, debounce, deepAssign, deepClone, deepCloneWith, deepDefaults, deepFreeze, def, defer, delay, difference, dropCache, env, escapeHtml, escapeNumeric, escapeRegExp, fastIdle, fastIdlePromise, fastRaf, findMean, flagsToMap, flatten, formatMoney, formatNumber, get, getFileExtension, getFileName, getInitials, getMostSpecificPaths, getRandomInt, getRandomTime, getWords, groupBy, has, hasOwn, hasProtocol, hex, hexToChannels, hmToSeconds, hslToChannels, humanFileSize, humanize, interpolateColor, intersection, intersectionBy, isBigInt, isBoolean, isCached, isClient, isColorChannels, isCustomizerFactory, isDate, isDateObject, isDef, isEmpty, isEqual, isError, isFunction, isInfinity, isMap, isNode, isNullOrUndefined, isNumber, isObject, isOneEmoji, isPlainObject, isPrimitive, isPromise, isRegExp, isSet, isSkip, isString, isSuccess, isSymbol, isTimeObject, isTimeString, isTimeValue, isValidWeekDay, isWeakMap, isWeakSet, isWithCache, isoToFlagEmoji, kebabCase, keyBy, logger, loggerSetLevel, lowerCase, luminance, maskingEmail, maskingPhone, maskingWords, nextTickIteration, noop, objectId, omit, omitPrefixed, orderBy, parseAllNumbers, parseAlpha, parsePercentage, percentOf, pick, pickPrefixed, qs, rafPromise, randomString, removeVS16s, retryOnError, rgbToChannels, rleDecode, rleEncode, round2digits, secondsToHm, set, shuffle, snakeCase, sprintf, startCase, strAssign, sum, textDecoder, textEncoder, throttle, timeFromMinutes, timeStringify, timeToMinutes, timeout, timestamp, timestampMs, timestampToDate, tintedTextColor, toError, toMap, truncate, typeOf, uint16ToUint8, uint32ToUint8, uint8ToUint16, uint8ToUint32, unflatten, union, uniq, uniqBy, unset, weeksInYear, weightedRoundRobin, withCache, withCacheBucket, withCacheBucketBatch, withCacheFixed, withCacheLRU, withDeepClone, withPointerCache, withResolve, wrapText };
|
package/dist/index.d.ts
CHANGED
|
@@ -1151,6 +1151,32 @@ declare function compareBytes(a: Uint8Array, b: Uint8Array): boolean;
|
|
|
1151
1151
|
*/
|
|
1152
1152
|
declare function concatenateBytes(a: Uint8Array, b: Uint8Array): Uint8Array;
|
|
1153
1153
|
|
|
1154
|
+
/**
|
|
1155
|
+
* Decode a run-length encoded buffer.
|
|
1156
|
+
*
|
|
1157
|
+
* Decodes `[value, count]` pairs back into runs of `value`.
|
|
1158
|
+
* All other bytes pass through unchanged.
|
|
1159
|
+
*
|
|
1160
|
+
* @param buf - RLE-encoded buffer to decode
|
|
1161
|
+
* @param value - Byte value that was compressed (default: 0)
|
|
1162
|
+
* @returns Decoded buffer
|
|
1163
|
+
* @group Binary
|
|
1164
|
+
*/
|
|
1165
|
+
declare function rleDecode(buf: Uint8Array, value?: number): Uint8Array;
|
|
1166
|
+
|
|
1167
|
+
/**
|
|
1168
|
+
* Run-length encode a buffer, compressing runs of a specific byte value.
|
|
1169
|
+
*
|
|
1170
|
+
* Runs of `value` are encoded as [value, count] pairs (count ≤ 255).
|
|
1171
|
+
* All other bytes pass through unchanged.
|
|
1172
|
+
*
|
|
1173
|
+
* @param buf - Input buffer to encode
|
|
1174
|
+
* @param value - Byte value to compress runs of (default: 0)
|
|
1175
|
+
* @returns RLE-encoded buffer
|
|
1176
|
+
* @group Binary
|
|
1177
|
+
*/
|
|
1178
|
+
declare function rleEncode(buf: Uint8Array, value?: number): Uint8Array;
|
|
1179
|
+
|
|
1154
1180
|
/**
|
|
1155
1181
|
* Converts a `Uint16Array` into a `Uint8Array`.
|
|
1156
1182
|
*
|
|
@@ -2904,10 +2930,9 @@ declare class AppError extends Error {
|
|
|
2904
2930
|
}
|
|
2905
2931
|
|
|
2906
2932
|
/**
|
|
2907
|
-
* Same as `AssertionError` but for browser env.
|
|
2908
2933
|
* @group Errors
|
|
2909
2934
|
*/
|
|
2910
|
-
declare class
|
|
2935
|
+
declare class AssertionError extends Error {
|
|
2911
2936
|
/**
|
|
2912
2937
|
* Set to the `actual` argument for methods such as {@link assert.strictEqual()}.
|
|
2913
2938
|
*/
|
|
@@ -5823,4 +5848,4 @@ declare function wrapText(value: string, maxLength?: number): string;
|
|
|
5823
5848
|
*/
|
|
5824
5849
|
declare function toError<T>(value: T, unknownMessage?: string): T extends Error ? T : Error;
|
|
5825
5850
|
|
|
5826
|
-
export { type AnyFunction, AppError, type AppErrorOptions, type ArgumentsType, type Arrayable, AsyncIterableQueue, type Awaitable, type Base64ToBytesOptions, type BaseX, BitPack, BitUnpack,
|
|
5851
|
+
export { type AnyFunction, AppError, type AppErrorOptions, type ArgumentsType, type Arrayable, AssertionError, AsyncIterableQueue, type Awaitable, type Base64ToBytesOptions, type BaseX, BitPack, BitUnpack, type BytesToBase64Options, CancellablePromise, type CatchErrorResult, Color, type ColorChannels, ColorParser, type Data, type DateObject, type DateObjectInput, type DebouncedFunction, type DeepPartial, type DeepReadonly, type Defer, instance as EJSON, EJSON as EJSONInstance, EJSONStream, type EJSONStreamOptions, type EJSONStreamOptionsWithPayload, type EJSONType, type EnvParser, type ExecResult, type ExecResultToSkip, type ExecResultToSuccess, type ExecSkip, type ExecSuccess, FindMean, FixedMap, FixedWeakMap, Fn, type FormatMoney, type FormatNumber, type FunctionArgs, type GenericObject, type IfAny, type IsAny, type LiteralUnion, type Logger, LruCache, type Nothing, type OverwriteWith, type Prettify, type Primitive, type PromisifyFn, Queue, type RandomizerOptions, ResourcePool, type ResourcePoolEventMap, type ResourcePoolOptions, type RetryOnErrorConfig, type SecureCustomizerOptions, type SelectOptionItem, type SelectOptions, type SimpleDefaultEventMap, SimpleEventEmitter, type SimpleEventMap, SortedArray, type SortedArrayCompareFn, _default as TWEMOJI_REGEX, type ThemeConfig, type ThrottledFunction, TimeBucket, type TimeBucketOptions, type TimeObject, type TimeObjectInput, TimeSpan, type TimeSpanUnit, type TimeString, type TimeValue, type TimestampMsInput, type TypeOf, type TypeOfMap, type ValuesOfObject, type WithCache, type WithCacheBucketBatchOptions, type WithCacheBucketOptions, type WithCacheFixedOptions, type WithCacheLruOptions, type WithCacheOptions, type WithCachePointer, type WithCacheResult, type WithCacheStorage, type WithCode, type WithCustomizer, type WithCustomizerFactory, type WithCustomizerValue, type WrrItem, alpha, arrayable, assert, asyncFilter, asyncFind, asyncForEach, asyncMap, avg, avgCircular, base62, base62Fast, base64, base64ToBytes, base64url, basex, bigIntBytes, bigIntFromBytes, bitPack, bitUnpack, blendColors, buildCssColor, bytesToBase64, cache, cacheBucket, cacheFixed, cacheLRU, camelCase, capitalize, captureStackTrace, catchError, channelsToHSL, channelsToHex, channelsToRGB, checkBitmask, chunk, chunkSeries, clamp, cleanEmpty, cleanObject, colorToChannels, compareBytes, concatenateBytes, contrastRatio, convertToUnit, crc32, createCustomizer, createCustomizerFactory, createDateObject, createDeepCloneWith, createEJSON, createEJSONStream, createEnvParser, createFunction, createRandomizer, createSecureCustomizer, createTimeObject, createTimeSpan, createWithCache, cssVariable, dateInDays, dateInSeconds, debounce, deepAssign, deepClone, deepCloneWith, deepDefaults, deepFreeze, def, defer, delay, difference, dropCache, env, escapeHtml, escapeNumeric, escapeRegExp, fastIdle, fastIdlePromise, fastRaf, findMean, flagsToMap, flatten, formatMoney, formatNumber, get, getFileExtension, getFileName, getInitials, getMostSpecificPaths, getRandomInt, getRandomTime, getWords, groupBy, has, hasOwn, hasProtocol, hex, hexToChannels, hmToSeconds, hslToChannels, humanFileSize, humanize, interpolateColor, intersection, intersectionBy, isBigInt, isBoolean, isCached, isClient, isColorChannels, isCustomizerFactory, isDate, isDateObject, isDef, isEmpty, isEqual, isError, isFunction, isInfinity, isMap, isNode, isNullOrUndefined, isNumber, isObject, isOneEmoji, isPlainObject, isPrimitive, isPromise, isRegExp, isSet, isSkip, isString, isSuccess, isSymbol, isTimeObject, isTimeString, isTimeValue, isValidWeekDay, isWeakMap, isWeakSet, isWithCache, isoToFlagEmoji, kebabCase, keyBy, logger, loggerSetLevel, lowerCase, luminance, maskingEmail, maskingPhone, maskingWords, nextTickIteration, noop, objectId, omit, omitPrefixed, orderBy, parseAllNumbers, parseAlpha, parsePercentage, percentOf, pick, pickPrefixed, qs, rafPromise, randomString, removeVS16s, retryOnError, rgbToChannels, rleDecode, rleEncode, round2digits, secondsToHm, set, shuffle, snakeCase, sprintf, startCase, strAssign, sum, textDecoder, textEncoder, throttle, timeFromMinutes, timeStringify, timeToMinutes, timeout, timestamp, timestampMs, timestampToDate, tintedTextColor, toError, toMap, truncate, typeOf, uint16ToUint8, uint32ToUint8, uint8ToUint16, uint8ToUint32, unflatten, union, uniq, uniqBy, unset, weeksInYear, weightedRoundRobin, withCache, withCacheBucket, withCacheBucketBatch, withCacheFixed, withCacheLRU, withDeepClone, withPointerCache, withResolve, wrapText };
|
package/dist/index.mjs
CHANGED
|
@@ -821,7 +821,7 @@ function uniqBy(array, comparator) {
|
|
|
821
821
|
});
|
|
822
822
|
}
|
|
823
823
|
|
|
824
|
-
class
|
|
824
|
+
class AssertionError extends Error {
|
|
825
825
|
/**
|
|
826
826
|
* Set to the `actual` argument for methods such as {@link assert.strictEqual()}.
|
|
827
827
|
*/
|
|
@@ -852,17 +852,6 @@ class BrowserAssertionError extends Error {
|
|
|
852
852
|
}
|
|
853
853
|
}
|
|
854
854
|
|
|
855
|
-
let AssertionError = BrowserAssertionError;
|
|
856
|
-
if (isNode()) {
|
|
857
|
-
try {
|
|
858
|
-
const assert = require("node:assert");
|
|
859
|
-
if (assert.AssertionError) {
|
|
860
|
-
AssertionError = assert.AssertionError;
|
|
861
|
-
}
|
|
862
|
-
} catch {
|
|
863
|
-
}
|
|
864
|
-
}
|
|
865
|
-
|
|
866
855
|
function ok(value, message) {
|
|
867
856
|
if (!value) {
|
|
868
857
|
throw toError$1(
|
|
@@ -2182,6 +2171,47 @@ function concatenateBytes(a, b) {
|
|
|
2182
2171
|
return result;
|
|
2183
2172
|
}
|
|
2184
2173
|
|
|
2174
|
+
function rleDecode(buf, value = 0) {
|
|
2175
|
+
const result = [];
|
|
2176
|
+
let i = 0;
|
|
2177
|
+
while (i < buf.length) {
|
|
2178
|
+
if (buf[i] === value) {
|
|
2179
|
+
const count = buf[i + 1];
|
|
2180
|
+
for (let j = 0; j < count; j++) {
|
|
2181
|
+
result.push(value);
|
|
2182
|
+
}
|
|
2183
|
+
i += 2;
|
|
2184
|
+
} else {
|
|
2185
|
+
result.push(buf[i]);
|
|
2186
|
+
i++;
|
|
2187
|
+
}
|
|
2188
|
+
}
|
|
2189
|
+
return new Uint8Array(result);
|
|
2190
|
+
}
|
|
2191
|
+
|
|
2192
|
+
function rleEncode(buf, value = 0) {
|
|
2193
|
+
const result = [];
|
|
2194
|
+
let i = 0;
|
|
2195
|
+
while (i < buf.length) {
|
|
2196
|
+
if (buf[i] === value) {
|
|
2197
|
+
const runStart = i;
|
|
2198
|
+
while (i < buf.length && buf[i] === value) {
|
|
2199
|
+
i++;
|
|
2200
|
+
}
|
|
2201
|
+
let runLength = i - runStart;
|
|
2202
|
+
while (runLength > 0) {
|
|
2203
|
+
const chunk = Math.min(runLength, 255);
|
|
2204
|
+
result.push(value, chunk);
|
|
2205
|
+
runLength -= chunk;
|
|
2206
|
+
}
|
|
2207
|
+
} else {
|
|
2208
|
+
result.push(buf[i]);
|
|
2209
|
+
i++;
|
|
2210
|
+
}
|
|
2211
|
+
}
|
|
2212
|
+
return new Uint8Array(result);
|
|
2213
|
+
}
|
|
2214
|
+
|
|
2185
2215
|
function uint16ToUint8(value) {
|
|
2186
2216
|
const uint8Array = new Uint8Array(value.length * 2);
|
|
2187
2217
|
for (let i = 0; i < value.length; i++) {
|
|
@@ -5999,5 +6029,5 @@ function withResolve(fn, getCacheKey) {
|
|
|
5999
6029
|
}
|
|
6000
6030
|
}
|
|
6001
6031
|
|
|
6002
|
-
export { AppError,
|
|
6032
|
+
export { AppError, AssertionError, AsyncIterableQueue, CancellablePromise, ColorParser, instance as EJSON, EJSON as EJSONInstance, EJSONStream, FindMean, FixedMap, FixedWeakMap, LruCache, Queue, ResourcePool, SimpleEventEmitter, SortedArray, TWEMOJI_REGEX, TimeBucket, TimeSpan, alpha, arrayable, assert, asyncFilter, asyncFind, asyncForEach, asyncMap, avg, avgCircular, base62, base62Fast, base64, base64ToBytes, base64url, basex, bigIntBytes, bigIntFromBytes, bitPack, bitUnpack, blendColors, buildCssColor, bytesToBase64, cache, cacheBucket, cacheFixed, cacheLRU, camelCase, capitalize, captureStackTrace, catchError, channelsToHSL, channelsToHex, channelsToRGB, checkBitmask, chunk, chunkSeries, clamp, cleanEmpty, cleanObject, colorToChannels, compareBytes, concatenateBytes, contrastRatio, convertToUnit, crc32, createCustomizer, createCustomizerFactory, createDateObject, createDeepCloneWith, createEJSON, createEJSONStream, createEnvParser, createFunction, createRandomizer, createSecureCustomizer, createTimeObject, createTimeSpan, createWithCache, cssVariable, dateInDays, dateInSeconds, debounce, deepAssign, deepClone, deepCloneWith, deepDefaults, deepFreeze, def, defer, delay, difference, dropCache, env, escapeHtml, escapeNumeric, escapeRegExp, fastIdle, fastIdlePromise, fastRaf, findMean, flagsToMap, flatten, formatMoney, formatNumber, get, getFileExtension, getFileName, getInitials, getMostSpecificPaths, getRandomInt, getRandomTime, getWords, groupBy, has, hasOwn, hasProtocol, hex, hexToChannels, hmToSeconds, hslToChannels, humanFileSize, humanize, interpolateColor, intersection, intersectionBy, isBigInt, isBoolean, isCached, isClient, isColorChannels, isCustomizerFactory, isDate, isDateObject, isDef, isEmpty, isEqual, isError, isFunction, isInfinity, isMap, isNode, isNullOrUndefined, isNumber, isObject, isOneEmoji, isPlainObject, isPrimitive, isPromise, isRegExp, isSet, isSkip, isString, isSuccess, isSymbol, isTimeObject, isTimeString, isTimeValue, isValidWeekDay, isWeakMap, isWeakSet, isWithCache, isoToFlagEmoji, kebabCase, keyBy, logger, loggerSetLevel, lowerCase, luminance, maskingEmail, maskingPhone, maskingWords, nextTickIteration, noop, objectId, omit, omitPrefixed, orderBy, parseAllNumbers, parseAlpha, parsePercentage, percentOf, pick, pickPrefixed, qs, rafPromise, randomString, removeVS16s, retryOnError, rgbToChannels, rleDecode, rleEncode, round2digits, secondsToHm, set, shuffle, snakeCase, sprintf, startCase, strAssign, sum, textDecoder, textEncoder, throttle, timeFromMinutes, timeStringify, timeToMinutes, timeout, timestamp, timestampMs, timestampToDate, tintedTextColor, toError, toMap, truncate, typeOf, uint16ToUint8, uint32ToUint8, uint8ToUint16, uint8ToUint32, unflatten, union, uniq, uniqBy, unset, weeksInYear, weightedRoundRobin, withCache, withCacheBucket, withCacheBucketBatch, withCacheFixed, withCacheLRU, withDeepClone, withPointerCache, withResolve, wrapText };
|
|
6003
6033
|
//# sourceMappingURL=index.mjs.map
|