1
0
mirror of synced 2025-11-08 21:07:23 +00:00

feat(browser): add browser build, tests, and sample sha256 library method

This commit is contained in:
Jason Dreyzehner
2017-02-23 03:06:55 -05:00
parent a56491f866
commit 01f67d103a
18 changed files with 901 additions and 65 deletions

6
src/lib/async.spec.ts Normal file
View File

@@ -0,0 +1,6 @@
import { test } from 'ava'
import { asyncABC } from 'typescript-starter'
test('getABC', async t => {
t.deepEqual(await asyncABC(), ['a','b', 'c'])
})