Skip to content

Commit af1b00e

Browse files
committed
initial commit
0 parents  commit af1b00e

File tree

4 files changed

+36
-0
lines changed

4 files changed

+36
-0
lines changed

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
node_modules

01-first-async-await-function.js

Whitespace-only changes.

package.json

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
{
2+
"name": "201709-javascript-async-await",
3+
"version": "1.0.0",
4+
"description": "asynchronous javascript with async/await",
5+
"main": "index.js",
6+
"author": "wangshijun2010 <[email protected]>",
7+
"license": "MIT",
8+
"dependencies": {
9+
"node-fetch": "^1.7.2"
10+
}
11+
}

yarn.lock

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
# THIS IS AN AUTOGENERATED FILE. DO NOT EDIT THIS FILE DIRECTLY.
2+
# yarn lockfile v1
3+
4+
5+
encoding@^0.1.11:
6+
version "0.1.12"
7+
resolved "http://registry.npm.taobao.org/encoding/download/encoding-0.1.12.tgz#538b66f3ee62cd1ab51ec323829d1f9480c74beb"
8+
dependencies:
9+
iconv-lite "~0.4.13"
10+
11+
iconv-lite@~0.4.13:
12+
version "0.4.18"
13+
resolved "http://registry.npm.taobao.org/iconv-lite/download/iconv-lite-0.4.18.tgz#23d8656b16aae6742ac29732ea8f0336a4789cf2"
14+
15+
is-stream@^1.0.1:
16+
version "1.1.0"
17+
resolved "http://registry.npm.taobao.org/is-stream/download/is-stream-1.1.0.tgz#12d4a3dd4e68e0b79ceb8dbc84173ae80d91ca44"
18+
19+
node-fetch@^1.7.2:
20+
version "1.7.2"
21+
resolved "http://registry.npm.taobao.org/node-fetch/download/node-fetch-1.7.2.tgz#c54e9aac57e432875233525f3c891c4159ffefd7"
22+
dependencies:
23+
encoding "^0.1.11"
24+
is-stream "^1.0.1"

0 commit comments

Comments
 (0)