![Oracle Drags Its Feet in the JavaScript Trademark Dispute](https://cdn.sanity.io/images/cgdhsj6q/production/919c3b22c24f93884c548d60cbb338e819ff2435-1024x1024.webp?w=400&fit=max&auto=format)
Security News
Oracle Drags Its Feet in the JavaScript Trademark Dispute
Oracle seeks to dismiss fraud claims in the JavaScript trademark dispute, delaying the case and avoiding questions about its right to the name.
tsch-ej-numbers
Advanced tools
API for analyzing EuroJackpot lottery numbers, trends, and probabilities.
This is an API to analyze the EuroJackpot draws.
https://en.wikipedia.org/wiki/Eurojackpot
npm install --save tsch-ej-numbers
export type TRecord = {
date: string;
wn1: number;
wn2: number;
wn3: number;
wn4: number;
wn5: number;
en1: number;
en2: number;
stake: number;
countCl1: number;
quotaCl1: number;
countCl2: number;
quotaCl2: number;
countCl3: number;
quotaCl3: number;
countCl4: number;
quotaCl4: number;
countCl5: number;
quotaCl5: number;
countCl6: number;
quotaCl6: number;
countCl7: number;
quotaCl7: number;
countCl8: number;
quotaCl8: number;
countCl9: number;
quotaCl9: number;
countCl10: number;
quotaCl10: number;
countCl11: number;
quotaCl11: number;
countCl12: number;
quotaCl12: number;
day: string;
};
Function | Version |
---|---|
getRecords | 1.0.x |
getLastDraw | 1.0.x |
getFirstDraw | 1.0.x |
getClassOneDraws | 1.0.x |
getMaxJackpotDraws | 1.0.x |
getWinningNumbersCount | 1.0.x |
getEuroNumbersCount | 1.0.x |
getDecadesCount | 1.0.x |
getLowHighCount | 1.0.x |
getMinMaxQuotaCount | 1.1.x |
getTopNumbers | 1.1.x |
getFlopNumbers | 1.1.x |
getRecordByDate | 1.2.x |
Returns all records of available draws.
Code:
import { getRecords } from "tsch-ej-numbers";
console.log(getRecords()); // all records
console.log(getRecords(0)); // all records
console.log(getRecords(10)); // last 10 records
Returns the last current record.
Code:
import { getLastDraw } from "tsch-ej-numbers";
console.log(getLastDraw());
Returns the first record.
Code:
import { getFirstDraw } from "tsch-ej-numbers";
console.log(getFirstDraw());
Returns all records with success in class one.
Code:
import { getClassOneDraws } from "tsch-ej-numbers";
console.log(getClassOneDraws(100));
Returns all records with success in class one and a quota of 120.000.000,00 €.
Code:
import { getMaxJackpotDraws } from "tsch-ej-numbers";
console.log(getMaxJackpotDraws());
console.log(getMaxJackpotDraws(0));
console.log(getMaxJackpotDraws(100));
Returns a key / value array for all winning numbers.
Code:
import { getWinningNumbersCount } from "tsch-ej-numbers";
console.log(getWinningNumbersCount());
console.log(getWinningNumbersCount(0));
console.log(getWinningNumbersCount(100));
Returns a key / value array for all euro numbers.
Code:
import { getEuroNumbersCount } from "tsch-ej-numbers";
console.log(getEuroNumbersCount());
console.log(getEuroNumbersCount(0));
console.log(getEuroNumbersCount(100));
Returns an object for decades with according count for all draws.
Code:
import { getDecadesCount } from "tsch-ej-numbers";
console.log(getDecadesCount());
Returns an object for low and high sections with according count for all draws.
Code:
import { getLowHighCount } from "tsch-ej-numbers";
console.log(getLowHighCount());
Returns an object for all winning classes (1...12) with all corresponding sub-objects (min/max). These sub-objects return the date and the corresponding value for all draws.
Code:
import { getMinMaxQuotaCount } from "tsch-ej-numbers";
console.log(getMinMaxQuotaCount());
Returns an object with key-values for top winning and euro numbers for all draws.
Code:
import { getTopNumbers } from "tsch-ej-numbers";
console.log(getTopNumbers());
Returns an object with key-values for flop winning and euro numbers for all draws.
Code:
import { getFlopNumbers } from "tsch-ej-numbers";
console.log(getFlopNumbers());
Returns a record for a given date.
Code:
import { getRecordByDate } from "tsch-ej-numbers";
console.log(getRecordByDate());
console.log(getRecordByDate("31.01.2020"));
console.log(getRecordByDate("32.01.2020"));
FAQs
API for analyzing EuroJackpot lottery numbers, trends, and probabilities.
The npm package tsch-ej-numbers receives a total of 36 weekly downloads. As such, tsch-ej-numbers popularity was classified as not popular.
We found that tsch-ej-numbers demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 0 open source maintainers collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
Oracle seeks to dismiss fraud claims in the JavaScript trademark dispute, delaying the case and avoiding questions about its right to the name.
Security News
The Linux Foundation is warning open source developers that compliance with global sanctions is mandatory, highlighting legal risks and restrictions on contributions.
Security News
Maven Central now validates Sigstore signatures, making it easier for developers to verify the provenance of Java packages.