@tannin/plural-forms
Version:
Compiles a function to compute the plural forms index for a given value
11 lines (10 loc) • 390 B
TypeScript
/**
* Given a C expression, returns a function which, when called with a value,
* evaluates the result with the value assumed to be the "n" variable of the
* expression. The result will be coerced to its numeric equivalent.
*
* @param {string} expression C expression.
*
* @return {Function} Evaluator function.
*/
export default function pluralForms(expression: string): Function;