stringzy
Version:
A versatile string manipulation library providing a range of text utilities for JavaScript and Node.js applications.
11 lines (10 loc) • 362 B
TypeScript
/**
* Converts a number to its Polish textual representation.
*
* Handles negative numbers, numbers from 0 to billions, and applies correct Polish grammatical forms.
*
* @param num The number to convert.
* @returns The textual representation of the number in Polish.
*/
declare function numberToTextPl(num: number): string;
export default numberToTextPl;