@patient-nz/medical-cannabis-data
v1.0.0-alpha.5
Published
Usage:
Downloads
4
Readme
Patient NZ - Medical Cannabis related Data & Statistics
Usage:
import { socialMedia, PollReportData } from "@patient-nz/medical-cannabis-data";
const {
reddit: {
polls
}
} = socialMedia;
// Unique list of up to date poll data
const allPollData = Object.values(polls)
.flatMap<PollReportData>(value => value)
.filter((poll, index, array) => {
const before = array.slice(0, index);
const foundBefore = before.find(other => other.url === poll.url);
return !foundBefore;
});
License
This work is licensed under a Creative Commons Attribution 4.0 International License.