nuxed/inflector

Nuxed Inflector

Installs: 33

Dependents: 0

Suggesters: 0

Security: 0

Stars: 0

Watchers: 2

Forks: 0

Open Issues: 0

Language:Hack

v1.0.0 2019-11-20 03:37 UTC

This package is auto-updated.

Last update: 2024-04-19 07:54:55 UTC


README

45311177?s=200&v=4

Build Status Total Downloads Latest Stable Version License

Nuxed Inflector

The Nuxed Inflector component converts words between their singular and plural forms (English only)

Installation

This package can be installed with Composer.

$ composer require nuxed/inflector

Example

use namespace Nuxed\Inflector;

<<__EntryPoint>>
async function main(): Awaitable<void> {
  $singular = Inflector\Inflector::singularize('children');
  // > vec['child']

  $plural = Inflector\Inflector::pluralize('bacterium');
  // > vec['bacteria']
}

Security

For information on reporting security vulnerabilities in Nuxed, see SECURITY.md.

License

Nuxed is open-sourced software licensed under the MIT-licensed.