gritty 9.0.1 → 9.0.2
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.
- package/ChangeLog +6 -0
- package/dist/gritty.js +37 -19
- package/dist/gritty.js.map +1 -1
- package/dist-dev/gritty.js +14 -3
- package/package.json +5 -5
package/ChangeLog
CHANGED
package/dist/gritty.js
CHANGED
|
@@ -2,6 +2,20 @@ var gritty;
|
|
|
2
2
|
/******/ (() => { // webpackBootstrap
|
|
3
3
|
/******/ var __webpack_modules__ = ({
|
|
4
4
|
|
|
5
|
+
/***/ 99
|
|
6
|
+
(module, __unused_webpack_exports, __webpack_require__) {
|
|
7
|
+
|
|
8
|
+
"use strict";
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
const {tryCatch} = __webpack_require__(3932);
|
|
12
|
+
|
|
13
|
+
module.exports = tryCatch;
|
|
14
|
+
module.exports.tryCatch = tryCatch;
|
|
15
|
+
|
|
16
|
+
|
|
17
|
+
/***/ },
|
|
18
|
+
|
|
5
19
|
/***/ 528
|
|
6
20
|
(__unused_webpack_module, exports, __webpack_require__) {
|
|
7
21
|
|
|
@@ -1725,7 +1739,7 @@ const {
|
|
|
1725
1739
|
WebglAddon
|
|
1726
1740
|
} = __webpack_require__(3688);
|
|
1727
1741
|
const currify = __webpack_require__(4299);
|
|
1728
|
-
const tryCatch = __webpack_require__(
|
|
1742
|
+
const tryCatch = __webpack_require__(99);
|
|
1729
1743
|
const wrap = __webpack_require__(9317);
|
|
1730
1744
|
const {
|
|
1731
1745
|
io
|
|
@@ -1873,6 +1887,28 @@ function connect(prefix, socketPath) {
|
|
|
1873
1887
|
return socket;
|
|
1874
1888
|
}
|
|
1875
1889
|
|
|
1890
|
+
/***/ },
|
|
1891
|
+
|
|
1892
|
+
/***/ 3932
|
|
1893
|
+
(__unused_webpack___webpack_module__, __webpack_exports__, __webpack_require__) {
|
|
1894
|
+
|
|
1895
|
+
"use strict";
|
|
1896
|
+
__webpack_require__.r(__webpack_exports__);
|
|
1897
|
+
/* harmony export */ __webpack_require__.d(__webpack_exports__, {
|
|
1898
|
+
/* harmony export */ "default": () => (__WEBPACK_DEFAULT_EXPORT__),
|
|
1899
|
+
/* harmony export */ tryCatch: () => (/* binding */ tryCatch)
|
|
1900
|
+
/* harmony export */ });
|
|
1901
|
+
const tryCatch = (fn, ...args) => {
|
|
1902
|
+
try {
|
|
1903
|
+
return [null, fn(...args)];
|
|
1904
|
+
} catch(e) {
|
|
1905
|
+
return [e];
|
|
1906
|
+
}
|
|
1907
|
+
};
|
|
1908
|
+
|
|
1909
|
+
/* harmony default export */ const __WEBPACK_DEFAULT_EXPORT__ = (tryCatch);
|
|
1910
|
+
|
|
1911
|
+
|
|
1876
1912
|
/***/ },
|
|
1877
1913
|
|
|
1878
1914
|
/***/ 4110
|
|
@@ -6114,24 +6150,6 @@ class Socket extends SocketWithUpgrade {
|
|
|
6114
6150
|
exports.Socket = Socket;
|
|
6115
6151
|
|
|
6116
6152
|
|
|
6117
|
-
/***/ },
|
|
6118
|
-
|
|
6119
|
-
/***/ 8446
|
|
6120
|
-
(module) {
|
|
6121
|
-
|
|
6122
|
-
"use strict";
|
|
6123
|
-
|
|
6124
|
-
|
|
6125
|
-
module.exports = (fn, ...args) => {
|
|
6126
|
-
try {
|
|
6127
|
-
return [null, fn(...args)];
|
|
6128
|
-
} catch(e) {
|
|
6129
|
-
return [e];
|
|
6130
|
-
}
|
|
6131
|
-
};
|
|
6132
|
-
|
|
6133
|
-
|
|
6134
|
-
|
|
6135
6153
|
/***/ },
|
|
6136
6154
|
|
|
6137
6155
|
/***/ 8661
|