A collection of typed convenience functions for JavaScript & TypeScript.
All functions are typed, and it is expected that they will be used only in type-checked code. This keeps the functions lightweight: they do not carry the overhead of checking argument types or handling type coercion.
flatten
getDuplicates
getFirstIntersection
getIntersection
getLastItem
includeIf
includes
omitSequentialDuplicateItems<I>(array: I[], { evaluate? }): I[]
pagesToIndices
pickRandomItem
pickRandomItems
pushIf
range(start: Integer, end: Integer): Integer[]
shuffle
resolveSlice(startAt: Integer | undefined, stopBefore: Integer | undefined): [Integer, Integer]
toArray<T>(T | T[]): T[]
toUniqueArray
Slice(startAt?: Integer, stopBefore?: Integer)
isValidDate
makeDateTimeStamp
sleep
slugifyDateTime
toUnixTime(:Date, decimalPlaces?: Integer): number
toUnixTime(timestampInMs: number, decimalPlaces?: Integer): number
truncateIsoDateTime
checkIsChildPath(targetPath: string | string[], referencePath: string | string[]): boolean
checkIsInBoundary(targetPath: string | string[], boundaryPath: string | string[], scope): boolean
composeFileName
deleteFile
Replaced bydeleteFileSync
in v4.0.0deleteFileSync
findPackageFileDir
findUpTree
getFileSystemRoot
listFilesSync
makeTempDir
readPackageFile
Replaced byreadPackageFileSync
in v4.0.0readPackageFileSync
safeWipe
safeWipeSync
toPath(pathLike: string | string[]): string
wipeDir
Removed in v4.0.0writeDataFile
writePackageFile
Replaced bywritePackageFileSync
in v4.0.0writePackageFileSync
curry(fnToCurry: Function, ...args: any[]): Function
extendFunction(fnToExtend: Function, ...extendingFns: Function[]): Function
pipe(...fnsToPipe: Function[])
toMapFunction(...itemFns: Function[]): Function
isDefinite(value: T | null | undefined): value is T
isIndefinite(value: unknown): value is null | undefined
isNull(value: unknown): value is null
isTruthy(value: T | Falsy): value is T
isUndefined(value: unknown): value is undefined
consoleIf(:boolean): (message: string) => void
generateRandomInt(minValue: number, maxValue: number): Integer
isInteger(value: any): boolean
isNumeric(value: any): boolean
entriesToKeyedItems(key: string, obj: object)
filterLeavesByKey(key: string, obj: object, options)
getOrDefault(obj: object, key: string, default: any)
isObject(value: any): boolean
mergeIf(conditional: any, :object)
omitByValue<TValues, TValue extends TValues>(value: TValue, obj: Record<string, TValues>): Record<string, TValues>
omitEmpty<TValues>(obj: Record<string, TValues>): Record<string, Exclude<TValues, {} | []>>
omitEmptyArrays<TValues>(obj: Record<string, TValues>): Record<string, Exclude<TValues, []>>
omitEmptyObjects<TValues>(obj: Record<string, TValues>): Record<string, Exclude<TValues, {}>>
omitEntriesByValue(value: any, obj: object): object
deprecated; useomitByValue
omitFalsy<TValues>(obj: Record<string, TValues>): Record<string, Exclude<TValues, null | undefined | '' | 0>'>
omitFalsyEntries(obj: object): object
deprecated; useomitFalsy
omitIndefinite<TValues>(obj: Record<string, TValues>): Record<string, Exclude<TValues, null | undefined>
omitNulls<TValues>(obj: Record<string, TValues>): Record<string, Exclude<TValues, null>
omitUndefined<TValues>(obj: Record<string, TValues>): Record<string, Exclude<TValues, undefined>
omitUndefinedEntries(obj: object): object
deprecated; useomitUndefined
setValueByPath(path: string | string[], value: any, target: object, options?)
swapKeysAndValues(obj: object): object
TypedObject.entries(obj: object | Array | number | string): [key: string, value][]
TypedObject.keys(obj: object | Array | number | string): string[]
capitalizeAllWords(stringToCapitalize: string): string
<code>capitalizeFirstWord(stringToCapitalize: string): string
computeHash(stringToHash: string, length: Integer = 32): string
countOccurrences(str: string, substring: string): Integer
digitsOnly(stringToParse: string): string
inflectByNumber(howMany: number, singular: string, plural?: string): string
inflectQuantity(howMany: number, singular: string, plural?: string): string
isEnclosed(stringToCheck: string, startDelimiter: string, endDelimiter?: string = startDelimiter): boolean
nondigitsOnly(stringToParse: string): string
parseInteger(stringToParse: string, options): Integer
parseEnclosed(stringToParse: string, startDelimiter: string, endDelimiter: string = startDelimiter): string
randomAlphanumeric(length: Integer): string
removeExtraWhitespace(str: string): string
removeWhitespace(str: string): string
splitOnce(stringToSplit: string, splitter: string>): string[]
startsWith(string: string, substring: string, startFromPosition: Integer = 0): boolean
padEnd
padStart
toLowerCase
toUpperCase
trim
trimLeft
trimRight
makeTestDir
makeTestRunDir
makeTestsDir
Directory
EventLog
StringCounter