Determine the plural version of a singular noun.
var NaturalLanguage = require('machinepack-nlp');
// Determine the plural version of a singular noun.
NaturalLanguage.pluralize({
noun: 'camera',
}).execSync();
A singular noun.
'camera'
An unexpected error occurred.
OK.
'cameras'