Compile an ICU MessageFormat 1 message into a MessageFormat instance.
import { mf1ToMessage } from '@messageformat/icu-messageformat-1';const msg = mf1ToMessage('en', 'The total is {V, number, ::currency/EUR}.');msg.format({ V: 4.2 }); Copy
import { mf1ToMessage } from '@messageformat/icu-messageformat-1';const msg = mf1ToMessage('en', 'The total is {V, number, ::currency/EUR}.');msg.format({ V: 4.2 });
'The total is €4.20.' Copy
'The total is €4.20.'
The locale to use for the message.
An ICU MessageFormat message, either in its syntax representation, as an array of @messageformat/parser AST tokens, or as a Model.Message data structure.
@messageformat/parser
See MF1Options and MessageFormatOptions
Compile an ICU MessageFormat 1 message into a MessageFormat instance.