-
Notifications
You must be signed in to change notification settings - Fork 0
Home
Subhajit Sahu edited this page Feb 10, 2020
·
2 revisions
Lists matching food additives.
foodins(query);
// query: code, name, type, or status of food additive
// --> [{code, names, type, status}]
const foodins = require('food-ins');
foodins('102');
// [ { code: '102',
// names: 'tartrazine',
// type: 'colour (yellow and orange) (FDA: FD&C Yellow #5)',
// status: 'a e' } ]
foodins('ins 102');
// [ { code: '102',
// names: 'tartrazine',
// type: 'colour (yellow and orange) (FDA: FD&C Yellow #5)',
// status: 'a e' } ]
foodins('ins 160 d (iii)');
// [ { code: '160d(iii)',
// names: 'lycopene, Blakeslea trispora',
// type: 'colour',
// status: 'a e' },
// { code: '160d', names: 'lycopenes', type: '', status: 'a e' },
// ... ]