I hereby claim:
- I am marcisbee on github.
- I am marcisbee (https://keybase.io/marcisbee) on keybase.
- I have a public key ASAmCyjRQeIgJDc91TOPHZb2hrNJSx_z2nFayO48PdaFdwo
To claim this, I am signing this object:
#!/bin/bash | |
# Ensure TMP_DIR is cleaned up on exit | |
cleanup() { | |
rm -rf "$TMP_DIR" | |
} | |
trap cleanup EXIT | |
# Validate repo name function | |
validate_repo_name() { |
const counter = new (class extends Exome { | |
count = 0 | |
increment() { | |
this.count += 1 | |
} | |
}) | |
function Counter({ | |
counter: { count, increment } = counter, | |
}) { |
const user = create({ | |
firstName: String, | |
lastName: String, | |
}) | |
const state = create({ | |
user, | |
}) | |
state.firstName = 'John' |
import { css, hover, setTheme, theme } from 'csx'; | |
import { dark, light } from './themes'; | |
setTheme(light); | |
const highlight = css({ | |
color: 'red', | |
backgroundColor: theme.background, | |
hover: { |
import { suite } from 'trest'; | |
import { double, asyncDouble } from './double.ts' | |
const test = suite('Test suite'); | |
test('Test something', *() => { | |
(yield double(5)).toBe(10); | |
}); |
I hereby claim:
To claim this, I am signing this object: