//#region src/does-start-with/index.d.ts /** * Creates a predicate function that determines if a string starts with a specific prefix. * * @param prefix - The substring to use as the prefix * @param input - The string to test * * @remarks * - Pure function with no side effects * - Case-sensitive comparison * - Uses String.prototype.startsWith() internally * - Useful for array filtering and functional programming * * @example * ```typescript * const startsWithHttp = doesStartWith('http'); * startsWithHttp('https://example.com'); // true * startsWithHttp('ftp://example.com'); // false * ``` */ declare const doesStartWith: (prefix: string) => (input: string) => boolean; //#endregion export { doesStartWith }; //# sourceMappingURL=index.d.ts.map