Research
Security News
Malicious npm Packages Inject SSH Backdoors via Typosquatted Libraries
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.
@byjohann/utils
Advanced tools
A collection of utility functions that I use across my JavaScript and TypeScript projects.
Run the following command to add @byjohann/utils
to your project.
# npm
npm install -D @byjohann/utils
# pnpm
pnpm add -D @byjohann/utils
# yarn
yarn add -D @byjohann/utils
toArray
Converts MaybeArray<T>
to Array<T>
.
type MaybeArray<T> = T | T[]
declare function toArray<T>(array?: MaybeArray<T> | null | undefined): T[]
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, any>>(
data: T[],
columns: (keyof T)[],
/** @default ',' */
delimiter?: string
): string
escapeCsvValue
Escapes a value for a CSV string.
[!NOTE] Returns an empty string if the value is
null
orundefined
.
declare function escapeCsvValue(value: unknown): string
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
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'
const mod = await interopDefault(import('./module.js'))
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
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
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
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)) // Hello, world!
generateRandomId
Generates a random string.
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
MIT License © 2024-PRESENT Johann Schopplich
FAQs
A collection of utilities for my projects
The npm package @byjohann/utils receives a total of 16 weekly downloads. As such, @byjohann/utils popularity was classified as not popular.
We found that @byjohann/utils demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 0 open source maintainers collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Research
Security News
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.
Security News
MITRE's 2024 CWE Top 25 highlights critical software vulnerabilities like XSS, SQL Injection, and CSRF, reflecting shifts due to a refined ranking methodology.
Security News
In this segment of the Risky Business podcast, Feross Aboukhadijeh and Patrick Gray discuss the challenges of tracking malware discovered in open source softare.