UNPKG

@formatjs/cli-lib

Version:
20 lines (19 loc) 534 B
export const format = msgs => { const results = {}; for (const [id, msg] of Object.entries(msgs)) { results[id] = { translation: msg.defaultMessage, notes: typeof msg.description === 'string' ? msg.description : JSON.stringify(msg.description), }; } return results; }; export const compile = msgs => { const results = {}; for (const [id, msg] of Object.entries(msgs)) { results[id] = msg.translation; } return results; };