remix 0.18.2 → 0.19.1
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/browser/index.js +1 -1
- package/index.d.ts +1 -1
- package/index.js +4 -10
- package/package.json +1 -1
package/browser/index.js
CHANGED
package/index.d.ts
CHANGED
package/index.js
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
// Copyright © 2021
|
|
1
|
+
// Copyright © 2021 Remix Software Inc. All rights reserved.
|
|
2
2
|
'use strict';
|
|
3
3
|
|
|
4
4
|
Object.defineProperty(exports, '__esModule', { value: true });
|
|
@@ -12,24 +12,18 @@ var platform = require('./platform');
|
|
|
12
12
|
Object.keys(client).forEach(function (k) {
|
|
13
13
|
if (k !== 'default' && !exports.hasOwnProperty(k)) Object.defineProperty(exports, k, {
|
|
14
14
|
enumerable: true,
|
|
15
|
-
get: function () {
|
|
16
|
-
return client[k];
|
|
17
|
-
}
|
|
15
|
+
get: function () { return client[k]; }
|
|
18
16
|
});
|
|
19
17
|
});
|
|
20
18
|
Object.keys(server).forEach(function (k) {
|
|
21
19
|
if (k !== 'default' && !exports.hasOwnProperty(k)) Object.defineProperty(exports, k, {
|
|
22
20
|
enumerable: true,
|
|
23
|
-
get: function () {
|
|
24
|
-
return server[k];
|
|
25
|
-
}
|
|
21
|
+
get: function () { return server[k]; }
|
|
26
22
|
});
|
|
27
23
|
});
|
|
28
24
|
Object.keys(platform).forEach(function (k) {
|
|
29
25
|
if (k !== 'default' && !exports.hasOwnProperty(k)) Object.defineProperty(exports, k, {
|
|
30
26
|
enumerable: true,
|
|
31
|
-
get: function () {
|
|
32
|
-
return platform[k];
|
|
33
|
-
}
|
|
27
|
+
get: function () { return platform[k]; }
|
|
34
28
|
});
|
|
35
29
|
});
|