Skip to content
This repository has been archived by the owner on Sep 28, 2020. It is now read-only.

Latest commit

 

History

History
27 lines (16 loc) · 676 Bytes

README.md

File metadata and controls

27 lines (16 loc) · 676 Bytes

⛔️ DEPRECATED

Please use the official package with @sheetbase/app-scripts.

Pluralize

Using pluralize in Google Apps Script.

Pluralize homepage: https://github.com/blakeembrey/pluralize

Install

Library ID: 13U-fcaWqa6zFHJzfr7X1AZmRi02sjoKbi-YqesHlGQAhqJoowsFEetcd

Select latest version, set Indentifier to Pluralize.

Usage

Logger.log(Pluralize.plural('test'));
Logger.log(Pluralize.singular('tests'));

Logger.log(Pluralize.pluralize('test'));

Logger.log(Pluralize.pluralize.plural('test'));
Logger.log(Pluralize.pluralize.singular('tests'));