@byjohann/utils
A collection of utility functions that I use across my JavaScript and TypeScript projects.
Installation
Run the following command to add @byjohann/utils
to your project.
npm install -D @byjohann/utils
pnpm add -D @byjohann/utils
yarn add -D @byjohann/utils
API
Array
toArray
Converts MaybeArray<T>
to Array<T>
.
type MaybeArray<T> = T | T[]
declare function toArray<T>(array?: MaybeArray<T> | null | undefined): T[]
CSV
createCSV
Converts an array of objects to a comma-separated values (CSV) string that contains only the columns
specified.
declare function createCSV<T extends Record<string, unknown>>(
data: T[],
columns: (keyof T)[],
options?: {
delimiter?: string
includeHeaders?: boolean
quoteAll?: boolean
}
): string
parseCSV
Parses a comma-separated values (CSV) string into an array of objects.
[!NOTE]
The first row of the CSV string is used as the header row.
type CSVRow<T extends string = string> = Record<T, string>
declare function parseCSV<Header extends string>(csv: string): CSVRow<Header>[]
escapeCSVValue
Escapes a value for a CSV string.
[!NOTE]
Returns an empty string if the value is null
or undefined
.
declare function escapeCSVValue(value: unknown, { delimiter, quoteAll, }?: {
/** @default ',' */
delimiter?: string
/** @default false */
quoteAll?: boolean
}): string
JSON
tryParseJSON
Type-safe wrapper around JSON.stringify
falling back to the original value if it is not a string or an error is thrown.
declare function tryParseJSON<T = unknown>(value: unknown): T
cloneJSON
Clones the given JSON value.
[!NOTE]
The value must not contain circular references as JSON does not support them. It also must contain JSON serializable values.
declare function cloneJSON<T>(value: T): T
Module
interopDefault
Interop helper for default exports.
declare function interopDefault<T>(m: T | Promise<T>): Promise<T extends {
default: infer U
} ? U : T>
Example:
import { interopDefault } from '@byjohann/utils'
async function loadModule() {
const mod = await interopDefault(import('./module.js'))
}
Object
objectKeys
Strictly typed Object.keys
.
declare function objectKeys<T extends Record<any, any>>(obj: T): Array<`${keyof T & (string | number | boolean | null | undefined)}`>
objectEntries
Strictly typed Object.entries
.
declare function objectEntries<T extends Record<any, any>>(obj: T): Array<[keyof T, T[keyof T]]>
deepApply
Deeply applies a callback to every key-value pair in the given object, as well as nested objects and arrays.
declare function deepApply<T extends Record<any, any>>(data: T, callback: (item: T, key: keyof T, value: T[keyof T]) => void): void
Path
withoutLeadingSlash
Removes the leading slash from the given path if it has one.
declare function withoutLeadingSlash(path?: string): string
withLeadingSlash
Adds a leading slash to the given path if it does not already have one.
declare function withLeadingSlash(path?: string): string
withoutTrailingSlash
Removes the trailing slash from the given path if it has one.
declare function withoutTrailingSlash(path?: string): string
withTrailingSlash
Adds a trailing slash to the given path if it does not already have one.
declare function withTrailingSlash(path?: string): string
joinURL
Joins the given base URL and path, ensuring that there is only one slash between them.
declare function joinURL(base?: string, path?: string): string
withBase
Adds the base path to the input path, if it is not already present.
declare function withBase(input?: string, base?: string): string
withoutBase
Removes the base path from the input path, if it is present.
declare function withoutBase(input?: string, base?: string): string
getPathname
Returns the pathname of the given path, which is the path without the query string.
declare function getPathname(path?: string): string
withQuery
Returns the URL with the given query parameters. If a query parameter is undefined, it is omitted.
declare function withQuery(input: string, query?: QueryObject): string
Example:
import { withQuery } from '@byjohann/utils'
const url = withQuery('https://example.com', {
foo: 'bar',
baz: undefined,
baz: { qux: 'quux' }
})
String
template
Simple template engine to replace variables in a string.
declare function template(str: string, variables: Record<string | number, any>, fallback?: string | ((key: string) => string)): string
Example:
import { template } from '@byjohann/utils'
const str = 'Hello, {name}!'
const variables = { name: 'world' }
console.log(template(str, variables))
generateRandomId
Generates a random string. The function is ported from nanoid
. You can specify the size of the string and the dictionary of characters to use.
declare function generateRandomId(size?: number, dict?: string): string
unindent
Removes common leading whitespace from a template string while also removing empty lines at the beginning and end.
declare function unindent(str: TemplateStringsArray | string): string
License
MIT License © 2024-PRESENT Johann Schopplich