UNPKG

node-pg-migrate

Version:

PostgreSQL database migration management tool for node.js

14 lines (12 loc) 314 B
/** * Convert a string into a decamelize lowercased one. * * @example * unicornsAndRainbows → unicorns_and_rainbows * myURLString → my_url_string * * @param text The string to decamelize. * @returns The decamelized string. */ declare function decamelize(text: string): string; export { decamelize };