UNPKG

@qntm-code/utils

Version:

A collection of useful utility functions with associated TypeScript types. All functions have been unit tested.

5 lines (4 loc) 163 B
/** * Inserts a string value at a given index in a source string */ export declare function insertAtIndex(source: string, value: string, index: number): string;