socket-function 0.110.0 → 0.112.0

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/SocketFunction.ts CHANGED
@@ -18,12 +18,6 @@ import { setFlag } from "./require/compileFlags";
18
18
  import { isNode } from "./src/misc";
19
19
  import { getPendingCallCount, harvestCallTimes, harvestFailedCallCount } from "./src/CallFactory";
20
20
 
21
- /** Always shim Date.now(), because we usually DO want an accurate time... */
22
- setImmediate(async () => {
23
- const { shimDateNow } = await import("./time/trueTimeShim");
24
- shimDateNow();
25
- });
26
-
27
21
  setFlag(require, "cbor-x", "allowclient", true);
28
22
  let cborxInstance = new cborx.Encoder({ structuredClone: true });
29
23
  if (isNode()) {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "socket-function",
3
- "version": "0.110.0",
3
+ "version": "0.112.0",
4
4
  "main": "index.js",
5
5
  "license": "MIT",
6
6
  "dependencies": {
@@ -20,7 +20,7 @@
20
20
  },
21
21
  "devDependencies": {
22
22
  "@types/cookie": "^0.5.1",
23
- "debugbreak": "^0.6.5",
23
+ "debugbreak": "^0.11.0",
24
24
  "pegjs": "^0.10.0",
25
25
  "typedev": "^0.1.3"
26
26
  }