-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsecp256k1-js.patch
59 lines (49 loc) · 1.49 KB
/
secp256k1-js.patch
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
- add support for workers in NWJS
- remove global exception handling
- add node-style module export
---
http/secp256k1.js | 27 ++++++++++++++++-----------
1 file changed, 16 insertions(+), 11 deletions(-)
diff --git a/http/secp256k1.js b/http/secp256k1.js
index d54d1be..1ece7eb 100644
--- a/http/secp256k1.js
+++ b/http/secp256k1.js
@@ -75,11 +75,11 @@ var nodeFS;
var nodePath;
if (ENVIRONMENT_IS_NODE) {
- if (ENVIRONMENT_IS_WORKER) {
- scriptDirectory = require('path').dirname(scriptDirectory) + '/';
- } else {
+ //if (ENVIRONMENT_IS_WORKER) {
+ // scriptDirectory = require('path').dirname(scriptDirectory) + '/';
+ //} else {
scriptDirectory = __dirname + '/';
- }
+ //}
// include: node_shell_read.js
@@ -111,14 +111,15 @@ readBinary = function readBinary(filename) {
module['exports'] = Module;
}
- process['on']('uncaughtException', function(ex) {
- // suppress ExitStatus exceptions from showing an error
- if (!(ex instanceof ExitStatus)) {
- throw ex;
- }
- });
+
+ // process['on']('uncaughtException', function(ex) {
+ // // suppress ExitStatus exceptions from showing an error
+ // if (!(ex instanceof ExitStatus)) {
+ // throw ex;
+ // }
+ // });
+ // process['on']('unhandledRejection', abort);
- process['on']('unhandledRejection', abort);
quit_ = function(status) {
process['exit'](status);
@@ -3238,6 +3239,10 @@ noExitRuntime = true;
run();
+if (typeof module !== 'undefined') {
+ module['exports'] = Module;
+}
+