UNPKG

@rr0/cms

Version:

RR0 Content Management System (CMS)

9 lines (8 loc) 226 B
export class MessageUtils { static plural(n, word) { return n ? `${n} ${MessageUtils.pluralWord(n, word)}` : ""; } static pluralWord(n, word) { return n ? `${word}${n > 1 ? "s" : ""}` : ""; } }