All Downloads are FREE. Search and download functionalities are using the official Maven repository.

node_modules.inflected.src.singularize.js Maven / Gradle / Ivy

The newest version!
import applyInflections from "./applyInflections";
import inflections from "./inflections";

export default function singularize(word, locale = "en") {
  return applyInflections(word, inflections(locale).singulars);
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy