2019.6.0 • Published 5 years ago

domain-datensatz v2019.6.0

Weekly downloads
2
License
MIT
Repository
github
Last release
5 years ago

Domain Datensatz

issues Build Status downloads

The following sources publish information about the available pharmaceutical products in Switzerland.

The files have been parsed and harmonized into json files. The documentation is available in German.

Get started

const { artikel } = require('domain-datensatz')

const result = Object.values(artikel).filter(item => {
  return item.applw == 'aural'
})
.map(item => {
  return item.name1
})

// [
//   'Otalgan, solution',
//   'Otothricinol, Suspension',
//   'Cerumenex, Tropfen',
//   'Panotile, gocce otologiche',
//   'Otipax, liquido',
//   'Polydexa, Ohrentropfen',
//   'Cerumenol, Tropfen',
//   'Otofa, Ohrentropfen',
//   'Otidolo, homöopathisch-spagyrische Tropfen',
//   'Similasan Ohrentropfen, Tropfen',
//   'Ciproxin HC, Ohrensuspension'
// ]
console.log(result)