
Security News
OpenClaw Skill Marketplace Emerges as Active Malware Vector
Security researchers report widespread abuse of OpenClaw skills to deliver info-stealing malware, exposing a new supply chain risk as agent ecosystems scale.
Lightweight JavaScript/TypeScript utilities with async helpers, array and string operations
noop(): void - A no-operation function that does nothingignorePromise(promise: Promise<any>): void - Helps to suppress unhandled promise rejectionschunk<T>(array: T[], size: number): T[][] - Splits array into chunks of the specified sizechunkStr(str: string, chunkSize: number): string[] - Splits a string into chunks of a specified sizeisObjectEmpty(obj: object): boolean - Checks if the given object is empty (contains no own properties)wait(ms: number, signal?: AbortSignal): Promise<void> - Returns a promise that resolves after the specified amount of time in milliseconds or when signal is abortedcreatePromisesCache - deprecated; use createInFlightDeduper insteadcreateInFlightDeduper - Creates a deduplicator for in-flight promises or sync functions. Prevents duplicate executions for the same key while a promise is pending. Clears the entry after settlementresultify - Executes a function and returns its result as a tuple [value, error]. Works with both sync and async functions. Never throws.Monitor class - provides simple methods to monitor execution time of functions:
measureFunctionTime(fn: Function): number | Promise<number>autoStart(label: string): Monitor - Creates a new Monitor instance and calls .start(label) on itstart(label: string)mark(label: string, description?: string)stop(label: string): MonitorResultnumber - mark timestampnumber - difference in milliseconds between start timestamp and mark timestampstring - an optional description of a marknumber - start timestampnumber - stop timestampnumber - difference between stopTs and startTsMonitorMark[] - array of marks (if any)FAQs
Lightweight JavaScript/TypeScript utilities with async helpers, array and string operations
We found that jsn-utils demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 1 open source maintainer 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.

Security News
Security researchers report widespread abuse of OpenClaw skills to deliver info-stealing malware, exposing a new supply chain risk as agent ecosystems scale.

Security News
Claude Opus 4.6 has uncovered more than 500 open source vulnerabilities, raising new considerations for disclosure, triage, and patching at scale.

Research
/Security News
Malicious dYdX client packages were published to npm and PyPI after a maintainer compromise, enabling wallet credential theft and remote code execution.