1
0
mirror of synced 2026-03-28 08:20:50 +00:00

feat(starter): add changelogs and examples

This commit is contained in:
Jason Dreyzehner
2017-02-12 11:23:46 -05:00
parent 7304e24d77
commit 5f18048ab7
19 changed files with 1121 additions and 42 deletions

View File

@@ -0,0 +1,3 @@
<html><body>
<script src="test.js" />
</body></html>

View File

@@ -0,0 +1,10 @@
// Note: we're not using the double method, so it should be excluded from the bundle
import { power, asyncABC } from '../../../'
if (power(3,4) === 81) {
console.log('✔ power(3,4) === 81')
} else {
console.error('The "power" method seems to be broken.')
}
asyncABC().then( abc => console.log('✔ asyncABC returned:', abc) )