pm10
Version:
Helper to show the name of the 10th Prime Minister of Malaysia
13 lines (12 loc) • 411 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.pm10 = void 0;
var pm10 = function (args) {
var title = '';
var name = 'Anwar bin Ibrahim';
if (args === null || args === void 0 ? void 0 : args.showTitle) {
title = "Yang Amat Berhormat Dato' Seri Haji";
}
return [title, name].filter(function (n) { return n; }).join(' ');
};
exports.pm10 = pm10;