node_modules.inflected.src.singularize.js Maven / Gradle / Ivy
import applyInflections from "./applyInflections";
import inflections from "./inflections";
export default function singularize(word, locale = "en") {
return applyInflections(word, inflections(locale).singulars);
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy