Skip to content
This repository was archived by the owner on Nov 27, 2024. It is now read-only.

Commit 1cd28ac

Browse files
author
yanqi.zong
committed
1.1.0
1 parent 52959d0 commit 1cd28ac

File tree

2 files changed

+4
-3
lines changed

2 files changed

+4
-3
lines changed

README.md

+3-2
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,10 @@
33
使用方法:
44

55
```
6-
require('google-mirror-check')
6+
var google = require('google-mirror-check')
7+
google.check()
78
.then(function(arr) {
8-
return arr.forEach(function(b) {
9+
arr.forEach(function(b) {
910
// b = {url: '', type: 'mirror': time: 1922, success: true};
1011
var str = '- [' + b.url + '](' + b.url + ')' + ' (' + b.time + 'ms)';
1112
console.log(str);

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "google-mirror-check",
3-
"version": "1.0.3",
3+
"version": "1.1.0",
44
"description": "get accessible google mirrors for mainland internet users",
55
"main": "index.js",
66
"dependencies": {

0 commit comments

Comments
 (0)