helper-fns
Advanced tools
Comparing version 2.6.38 to 2.6.40
@@ -34,2 +34,5 @@ import * as timers_promises from 'timers/promises'; | ||
type Constructor<T, Arguments extends unknown[] = any[]> = new (...arguments_: Arguments) => T; | ||
interface NestedObject { | ||
[key: string]: Primitive | Primitive[] | NestedObject; | ||
} | ||
type FunctionType<T = void> = (...arguments_: any) => T; | ||
@@ -224,2 +227,2 @@ type Maybe<T> = T | null; | ||
export { type Arrayable, type Awaitable, type Class, type Constructor, type FunctionType, type IDebounceOptions, type IEncryptOptions, type IPackageJson, type IPackageJsonAddress, type IPackageJsonPerson, type IRandomStringOptions, type ISlugifyOptions, type Maybe, type Nullable, type OptionalRecord, type Primitive, assert, autoParseValues, awaitTimeout, capitalize, capitalizeEveryWord, castArray, chop, chunk, clamp, common, compact, composeAsync, copyObject, debounce, decrypt, delay, difference, drop, dropRight, dropWhile, dynamicImport, encrypt, ensurePrefix, ensureSuffix, enumToString, equals, equalsIgnoreOrder, fill, findRootPath, fixedDecimal, flattenDeep, formatDuration, formatSearch, getPackageJson, getType, groupBy, hasDuplicates, inRange, intersection, invertObject, is, isArray, isBigint, isBlob, isBoolean, isBuffer, isClass, isDate, isDecimal, isEmpty, isError, isFile, isFloat, isFunction, isKeyOf, isNonPrimitive, isNull, isNumber, isObject, isPrimitive, isPromise, isRegExp, isSameDate, isString, isSymbol, isUndefined, lerp, lowerFirst, move, noop, normalizeEmail, objectArrayToArray, omit, orderBy, orderedToken, pick, pipe, pluck, randomAvatar, randomHex, randomNumber, randomString, range, rateLimit, readFile, removeNull, removeUndefined, renameKeys, resolverArguments, sample, shuffle, slash, slugify, stringAfter, stringBefore, stringifyQueryParameters, sumOfAnArray, template, throttler, timeTaken, timestamp, toString, uncapitalize, unescapeHTML, union, unique }; | ||
export { type Arrayable, type Awaitable, type Class, type Constructor, type FunctionType, type IDebounceOptions, type IEncryptOptions, type IPackageJson, type IPackageJsonAddress, type IPackageJsonPerson, type IRandomStringOptions, type ISlugifyOptions, type Maybe, type NestedObject, type Nullable, type OptionalRecord, type Primitive, assert, autoParseValues, awaitTimeout, capitalize, capitalizeEveryWord, castArray, chop, chunk, clamp, common, compact, composeAsync, copyObject, debounce, decrypt, delay, difference, drop, dropRight, dropWhile, dynamicImport, encrypt, ensurePrefix, ensureSuffix, enumToString, equals, equalsIgnoreOrder, fill, findRootPath, fixedDecimal, flattenDeep, formatDuration, formatSearch, getPackageJson, getType, groupBy, hasDuplicates, inRange, intersection, invertObject, is, isArray, isBigint, isBlob, isBoolean, isBuffer, isClass, isDate, isDecimal, isEmpty, isError, isFile, isFloat, isFunction, isKeyOf, isNonPrimitive, isNull, isNumber, isObject, isPrimitive, isPromise, isRegExp, isSameDate, isString, isSymbol, isUndefined, lerp, lowerFirst, move, noop, normalizeEmail, objectArrayToArray, omit, orderBy, orderedToken, pick, pipe, pluck, randomAvatar, randomHex, randomNumber, randomString, range, rateLimit, readFile, removeNull, removeUndefined, renameKeys, resolverArguments, sample, shuffle, slash, slugify, stringAfter, stringBefore, stringifyQueryParameters, sumOfAnArray, template, throttler, timeTaken, timestamp, toString, uncapitalize, unescapeHTML, union, unique }; |
{ | ||
"name": "helper-fns", | ||
"type": "module", | ||
"version": "2.6.38", | ||
"packageManager": "pnpm@8.7.1", | ||
"version": "2.6.40", | ||
"packageManager": "pnpm@8.11.0", | ||
"description": "Some common utilities functions for everyday backend usage with zero dependencies", | ||
@@ -7,0 +7,0 @@ "author": "Rubin Bhandari <roobin.bhandari@gmail.com>", |
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
205343
321