UNPKG

bananas-commerce-admin

Version:

What's this, an admin for apes?

30 lines (29 loc) 1.06 kB
export * from "./contribute"; export * from "./country_code_formatter"; export * from "./form_validation"; export * from "./format_date"; export * from "./format_purchase_number"; export * from "./format_string"; export * from "./get_cookie"; export * from "./has_access"; export * from "./has_group"; export * from "./has_permission"; export * from "./is_email"; export * from "./is_positive_integer"; export * from "./is_url"; export * from "./pluralize"; export * from "./select_styles"; export * from "./timeline"; export * from "./to_title_case"; export declare function ensureTrailingSlash(path: string): string; export declare function ensureLeadingHash(hash: string): string; export declare function absolutePath(path: string, basename?: string): string; export declare function nthIndexOf(str: string, pattern: string, n: number, start?: number): number; /** * Like Python’s `.capitalize()`. */ export declare function capitalize(string: string): string; /** * Like Python’s `.title()`. */ export declare function title(string: string): string;