UNPKG

locutus

Version:

Locutus other languages' standard libraries to JavaScript for fun and educational purposes

7 lines (6 loc) 207 B
type SscanfValue = string | number | null; type SscanfRef = { value: SscanfValue; }; export declare function sscanf(str: string, format: string, ...refs: SscanfRef[]): SscanfValue[] | number; export {};