UNPKG

pm10

Version:

Helper to show the name of the 10th Prime Minister of Malaysia

14 lines (11 loc) 286 B
type ConfigOptions = { showTitle: boolean; }; export const pm10 = (args?: ConfigOptions) => { let title = ''; const name = 'Anwar bin Ibrahim'; if (args?.showTitle) { title = `Yang Amat Berhormat Dato' Seri Haji`; } return [title, name].filter((n) => n).join(' '); };