UNPKG

together-ai-sdk

Version:

A typescript SDK for the Together AI API

8 lines (7 loc) 289 B
/** * Removes the front of a string if it exists * @param str - the string to remove the front of * @param front - the string to remove from the front of str * @returns str with front removed from the front */ export declare const removeFront: (str: string, front: string) => string;