pmcf 2.20.0 → 2.20.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/README.md +25 -1
- package/package.json +2 -2
package/README.md
CHANGED
|
@@ -18,7 +18,31 @@
|
|
|
18
18
|
|
|
19
19
|
<!-- Generated by documentation.js. Update this documentation by updating the source code. -->
|
|
20
20
|
|
|
21
|
-
|
|
21
|
+
### Table of Contents
|
|
22
|
+
|
|
23
|
+
* [NetworkAddress](#networkaddress)
|
|
24
|
+
* [Properties](#properties)
|
|
25
|
+
* [networkAddresses](#networkaddresses)
|
|
26
|
+
* [Parameters](#parameters)
|
|
27
|
+
|
|
28
|
+
## NetworkAddress
|
|
29
|
+
|
|
30
|
+
Type: [object](https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Object)
|
|
31
|
+
|
|
32
|
+
### Properties
|
|
33
|
+
|
|
34
|
+
* `networkInterface` **NetworkInterface** 
|
|
35
|
+
* `address` **([string](https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/String) | [Uint8Array](https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Uint8Array) | [Uint16Array](https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Uint16Array))** 
|
|
36
|
+
* `subnet` **Subnet** 
|
|
37
|
+
* `domainNames` **[Set](https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Set)<[string](https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/String)>** 
|
|
38
|
+
|
|
39
|
+
## networkAddresses
|
|
40
|
+
|
|
41
|
+
### Parameters
|
|
42
|
+
|
|
43
|
+
* `filter` **[object](https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Object)** (optional, default `n=>true`)
|
|
44
|
+
|
|
45
|
+
Returns **Iterable<[NetworkAddress](#networkaddress)>** 
|
|
22
46
|
|
|
23
47
|
# install
|
|
24
48
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "pmcf",
|
|
3
|
-
"version": "2.20.
|
|
3
|
+
"version": "2.20.1",
|
|
4
4
|
"publishConfig": {
|
|
5
5
|
"access": "public"
|
|
6
6
|
},
|
|
@@ -38,7 +38,7 @@
|
|
|
38
38
|
"lint:typescript": "tsc --allowJs --checkJs --noEmit --resolveJsonModule --target es2024 --lib esnext -m esnext --module nodenext --moduleResolution nodenext ./src**/*.mjs"
|
|
39
39
|
},
|
|
40
40
|
"dependencies": {
|
|
41
|
-
"ip-utilties": "^1.1.
|
|
41
|
+
"ip-utilties": "^1.1.1",
|
|
42
42
|
"npm-pkgbuild": "^18.0.1",
|
|
43
43
|
"pacc": "^3.4.0",
|
|
44
44
|
"pkg-dir": "^8.0.0"
|