@dot.indonesia/po-gen
Version:
This project has created to relieve work load as SDET or Automation Test Engineer. You just export the postman collection, and run this generator to write the automation code.
13 lines (12 loc) • 436 B
TypeScript
/**
* @description convert string to camelcase
* @param {string} text some text change to camelcase
* @returns {string} camelcase text tranformed
*/
export declare function toCamelCase(text: string): string;
/**
* @description convert string to lowercase
* @param {string} text some text change to lowercase
* @returns {string} lowercase text tranformed
*/
export declare function toLowerCase(text: string): string;