frida 15.1.3 → 15.1.7

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/README.md CHANGED
@@ -4,7 +4,7 @@
4
4
  [![NPM Downloads][npm-dm-image]][npm-link]
5
5
 
6
6
 
7
- Node.js bindings for [Frida](http://www.frida.re).
7
+ Node.js bindings for [Frida](http://frida.re).
8
8
 
9
9
  ## Depends
10
10
 
@@ -26,7 +26,7 @@ FRIDA=/absolute/path/to/fully/compiled/frida/repo npm install
26
26
 
27
27
  ## Examples
28
28
 
29
- * Follow [Setting up the experiment](http://www.frida.re/docs/functions/) to
29
+ * Follow [Setting up the experiment](http://frida.re/docs/functions/) to
30
30
  produce a binary.
31
31
  * Run the binary.
32
32
  * Take note of the memory address the binary gives you when run.
package/dist/device.js CHANGED
@@ -139,7 +139,7 @@ class Device {
139
139
  return process.pid;
140
140
  }
141
141
  [util_1.inspect.custom](depth, options) {
142
- return "Device " + util_1.inspect({
142
+ return "Device " + (0, util_1.inspect)({
143
143
  id: this.id,
144
144
  name: this.name,
145
145
  icon: this.icon,
package/dist/relay.js CHANGED
@@ -20,7 +20,7 @@ class Relay {
20
20
  return this.impl.kind;
21
21
  }
22
22
  [util_1.inspect.custom](depth, options) {
23
- return util_1.inspect(this.impl, Object.assign(Object.assign({}, options), { depth }));
23
+ return (0, util_1.inspect)(this.impl, Object.assign(Object.assign({}, options), { depth }));
24
24
  }
25
25
  }
26
26
  exports.Relay = Relay;
package/dist/session.js CHANGED
@@ -60,7 +60,7 @@ class Session {
60
60
  return new portal_membership_1.PortalMembership(await this.impl.joinPortal(address, certificate, token, acl, cancellable));
61
61
  }
62
62
  [util_1.inspect.custom](depth, options) {
63
- return "Session " + util_1.inspect({
63
+ return "Session " + (0, util_1.inspect)({
64
64
  pid: this.pid
65
65
  }, options);
66
66
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "frida",
3
- "version": "15.1.3",
3
+ "version": "15.1.7",
4
4
  "authors": [
5
5
  "Frida Developers"
6
6
  ],
@@ -19,7 +19,7 @@
19
19
  "ipad",
20
20
  "android"
21
21
  ],
22
- "homepage": "https://www.frida.re",
22
+ "homepage": "https://frida.re",
23
23
  "engines": {
24
24
  "node": ">=8.0.0"
25
25
  },
@@ -35,11 +35,11 @@
35
35
  },
36
36
  "devDependencies": {
37
37
  "@types/chai": "^4.2.18",
38
- "@types/mocha": "^8.2.2",
39
- "@types/node": "^15.12.2",
38
+ "@types/mocha": "^9.0.0",
39
+ "@types/node": "^16.10.5",
40
40
  "chai": "^4.3.4",
41
41
  "mocha": "^9.0.0",
42
- "prebuild": "^10.0.0",
42
+ "prebuild": "^11.0.0",
43
43
  "ts-node": "^10.0.0",
44
44
  "typescript": "^4.3.2"
45
45
  },