UNPKG

@cto.ai/ops

Version:

💻 CTO.ai - The CLI built for Teams 🚀

15 lines (14 loc) • 404 B
"use strict"; /** * @author: JP Lew (jp@cto.ai) * @date: Monday, 29th April 2019 5:55:21 pm * @lastModifiedBy: JP Lew (jp@cto.ai) * @lastModifiedTime: Friday, 13th September 2019 1:13:02 pm * @copyright (c) 2019 CTO.ai */ Object.defineProperty(exports, "__esModule", { value: true }); exports.pluralize = void 0; const pluralize = (str) => { return `${str}s`; }; exports.pluralize = pluralize;