UNPKG

angular2-data-table

Version:

angular2-data-table is a Angular2 component for presenting large and complex data.

17 lines (16 loc) 516 B
/** * Converts strings from something to camel case * http://stackoverflow.com/questions/10425287/convert-dash-separated-string-to-camelcase * @param {string} str * @return {string} camel case string */ export declare function camelCase(str: string): string; /** * Converts strings from camel case to words * http://stackoverflow.com/questions/7225407/convert-camelcasetext-to-camel-case-text * * @export * @param {any} str * @returns string */ export declare function deCamelCase(str: string): string;