printj
Version:
Pure-JS printf
11 lines (7 loc) • 357 B
TypeScript
/* index.d.ts (C) 2015-present SheetJS */
/** Version string */
export const version: string;
/** Generate formatted string from format and subsequent arguments */
export function sprintf(fmt: string, ...args: any[]): string;
/** Generate formatted string from format and array of variables */
export function vsprintf(fmt: string, args: any[]): string;