I hereby claim:
- I am amogower on github.
- I am amogower (https://keybase.io/amogower) on keybase.
- I have a public key ASBWBn3M50M9zOJJX4hDi2-dSDrKv6wTlZ_qRjofC3qCxwo
To claim this, I am signing this object:
interface Option<T> { | |
map <U>(fn: (a: T) => U): Option<U>; | |
isSome(): boolean; | |
isNone(): boolean; | |
isSomeAnd(fn: (a: T) => boolean): boolean; | |
isNoneAnd(fn: () => boolean): boolean; | |
unwrap(): T; | |
unwrapOr(def: T): T; | |
unwrapOrElse(f: () => T): T; | |
map<U>(f: (a: T) => U): Option<U>; |
I hereby claim:
To claim this, I am signing this object:
const singleMachine = Machine({ | |
id: "single", | |
initial: "default", | |
context: { | |
betId: undefined, | |
betName: "", | |
isEachWay: false, | |
stake: "", | |
warnings: [] | |
}, |
const singleBetMachine = Machine({ | |
id: 'singleBet', | |
initial: 'default', | |
context: { | |
isEachWay: false, | |
stake: '', | |
}, | |
states: { | |
default: { | |
on: { |
const singleBetMachine = Machine({ | |
id: 'singleBet', | |
initial: 'initial', | |
context: { | |
stake: '', | |
}, | |
states: { | |
initial: {}, | |
}, | |
}); |
const isEmail = (email) => email.indexOf('@') > -1; | |
const machine = Machine({ | |
id: 'betslip', | |
context: { | |
selectedBets: {}, | |
selectedBetsOddsTotals: {}, | |
freebetCache: {}, | |
stakes: { | |
multiples: [], |
const isEmail = (email) => email.indexOf('@') > -1; | |
const machine = Machine({ | |
id: 'myoc', | |
context: { | |
hasAcceptedNewsletter: false, | |
hasAcceptedTerms: false, | |
email: '', | |
password: '', | |
stayLoggedIn: false, |
{ | |
"workbench.colorCustomizations": { | |
"sideBar.background": "#16232A", | |
"activityBar.background": "#16232A", | |
"activityBar.border": "#3C3C3C", | |
"activityBarBadge.background": "#ffc02d", | |
"activityBarBadge.foreground": "#16232A", | |
"input.background": "#16232A", | |
"tab.inactiveForeground": "#AAAAAA", | |
"tab.activeBackground": "#303D46", |
// Place your settings in this file to overwrite the default settings | |
{ | |
"editor.fontFamily": "Liga Dank Mono", | |
// "editor.fontFamily": "Operator Mono Lig", | |
// "editor.fontFamily": "Fira Code", | |
// "editor.fontWeight": "400", | |
"editor.fontSize": 14, | |
"editor.fontLigatures": true, | |
"window.zoomLevel": -1, | |
"editor.minimap.enabled": true, |
<!DOCTYPE html> | |
<html> | |
<head> | |
<meta charset="utf-8"/> | |
<title>Check Test Benchmark</title> | |
<script src="https://cdnjs.cloudflare.com/ajax/libs/benchmark/1.0.0/benchmark.min.js"></script> | |
<script src="./suite.js"></script> | |
</head> | |
<body> | |
<h1>Open the console to view the results</h1> |