hsu-utils 0.0.22 → 0.0.24

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -1,6 +1,6 @@
1
1
  /*!
2
2
  *
3
- * hsu-utils v0.0.21
3
+ * hsu-utils v0.0.23
4
4
  *
5
5
  * some front-end utils
6
6
  *
@@ -19,10 +19,10 @@ function load(pdfUrl) {
19
19
  cMapUrl: 'https://unpkg.com/browse/pdfjs-dist@2.13.216/cmaps/',
20
20
  cMapPacked: true
21
21
  });
22
- pdf = yield loadingTask.promise;
22
+ pdf = loadingTask.promise;
23
23
  PDFMap.set(pdfUrl, pdf);
24
24
  }
25
- return pdf;
25
+ return yield pdf;
26
26
  });
27
27
  }
28
28
  function getNumPages(pdfUrl) {
@@ -46,18 +46,17 @@ function load(pdfUrl) {
46
46
  switch (_a.label) {
47
47
  case 0:
48
48
  pdf = PDFMap.get(pdfUrl);
49
- if (!!pdf) return [3, 2];
50
- loadingTask = (0, pdf_js_1.getDocument)({
51
- url: pdfUrl,
52
- cMapUrl: 'https://unpkg.com/browse/pdfjs-dist@2.13.216/cmaps/',
53
- cMapPacked: true
54
- });
55
- return [4, loadingTask.promise];
56
- case 1:
57
- pdf = _a.sent();
58
- PDFMap.set(pdfUrl, pdf);
59
- _a.label = 2;
60
- case 2: return [2, pdf];
49
+ if (!pdf) {
50
+ loadingTask = (0, pdf_js_1.getDocument)({
51
+ url: pdfUrl,
52
+ cMapUrl: 'https://unpkg.com/browse/pdfjs-dist@2.13.216/cmaps/',
53
+ cMapPacked: true
54
+ });
55
+ pdf = loadingTask.promise;
56
+ PDFMap.set(pdfUrl, pdf);
57
+ }
58
+ return [4, pdf];
59
+ case 1: return [2, _a.sent()];
61
60
  }
62
61
  });
63
62
  });
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "hsu-utils",
3
- "version": "0.0.22",
3
+ "version": "0.0.24",
4
4
  "description": "some front-end utils",
5
5
  "repository": "git@github.com:VitaTsui/hsu-utils.git",
6
6
  "author": "VitaHsu <vitahsu7@gmail.com>",