Cryptopanic added option to filter by kind ("news" or "media"). So I made some very small modifications to the code. Modifications in the cryptopanic.js file: - Add `kind: undefined,` inside `this.opts = {}` - `kind (x) { this.opts.kind = x; return this; }`
Cryptopanic added option to filter by kind ("news" or "media"). So I made some very small modifications to the code.
Modifications in the cryptopanic.js file:
Add
kind: undefined,insidethis.opts = {}kind (x) { this.opts.kind = x; return this; }