compromise
Version:
natural language processing in the browser
156 lines (155 loc) • 2.02 kB
JavaScript
//common nouns that have no plural form. These are suprisingly rare
//used in noun.inflect(), and added as nouns in lexicon
module.exports = [
'advice',
'aircraft',
'art',
'baggage',
'bass',
'beef',
'bison',
'blood',
'bread',
'butter',
'cake',
'cash',
'celcius',
'chaos',
'cheese',
'chewing',
'civics',
'clothing',
'coal',
'coffee',
'conduct',
'confusion',
'cotton',
'currency',
'economics',
'education',
'electricity',
'enjoyment',
'entertainment',
'equipment',
'ethics',
'everybody',
'everyone',
'fahrenheit',
'fiction',
'fish',
'flour',
'food',
'forgiveness',
'fowl',
'fruit',
'fun',
'furniture',
'gold',
'golf',
'gossip',
'grass',
'ground',
'gum',
'gymnastics',
'hair',
'halibut',
'happiness',
'hertz',
'history',
'hockey',
'homework',
'honey',
'hospitality',
'ice',
'impatience',
'importance',
'information',
'itself',
'jewelry',
'justice',
'kelvin',
'knowledge',
'laughter',
'leather',
'leisure',
'lightning',
'liquid',
'literature',
'luck',
'luggage',
'machinery',
'mail',
'mathematics',
'measles',
'meat',
'milk',
'mist',
'money',
'moose',
'mumps',
'music',
'news',
'noise',
'oil',
'oxygen',
'paper',
'patience',
'peace',
'peanut',
'pepper',
'petrol',
'physics',
'plastic',
'pork',
'power',
'pressure',
'progress',
'rain',
'recognition',
'recreation',
'relaxation',
'research',
'rice',
'sadness',
'safety',
'salmon',
'salt',
'sand',
'scenery',
'series',
'sheep',
'shopping',
'silk',
'silver',
'snow',
'soap',
'soccer',
'softness',
'space',
'spacecraft',
'species',
'speed',
'steam',
'steel',
'sugar',
'sunshine',
'tea',
'tennis',
'thunder',
'time',
'toothpaste',
'traffic',
'trouble',
'trousers',
'trout',
'tuna',
'vinegar',
'violence',
'warmth',
'water',
'weather',
'wildlife',
'wine',
'wood',
'wool'
];