//#region src/does-end-with/index.d.ts /** * Creates a predicate function that determines if a string ends with a specific suffix. * * @param suffix - The substring to use as the suffix * @param input - The string to test * * @remarks * - Pure function with no side effects * - Case-sensitive comparison * - Uses String.prototype.endsWith() internally * - Useful for array filtering and functional programming * * @example * ```typescript * const isJsFile = doesEndWith('.js'); * isJsFile('app.js'); // true * isJsFile('style.css'); // false * ``` */ declare const doesEndWith: (suffix: string) => (input: string) => boolean; //#endregion export { doesEndWith }; //# sourceMappingURL=index.d.ts.map