pacc 3.4.0 → 3.4.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 +13 -1
- package/package.json +5 -2
package/README.md
CHANGED
|
@@ -38,11 +38,13 @@ const result = getAttribute({ a: [0,{ b: 4 }]}, "a[1].b");
|
|
|
38
38
|
* [Parameters](#parameters-2)
|
|
39
39
|
* [getAttributeAndOperator](#getattributeandoperator)
|
|
40
40
|
* [Parameters](#parameters-3)
|
|
41
|
+
* [filter](#filter)
|
|
42
|
+
* [Parameters](#parameters-4)
|
|
41
43
|
* [lookup](#lookup)
|
|
42
44
|
* [Token](#token)
|
|
43
45
|
* [Properties](#properties-1)
|
|
44
46
|
* [createToken](#createtoken)
|
|
45
|
-
* [Parameters](#parameters-
|
|
47
|
+
* [Parameters](#parameters-5)
|
|
46
48
|
* [PLUS](#plus)
|
|
47
49
|
* [MINUS](#minus)
|
|
48
50
|
* [STAR](#star)
|
|
@@ -134,6 +136,16 @@ The name may be a property path like 'a.b.c <='.
|
|
|
134
136
|
|
|
135
137
|
Returns **\[any, [Token](#token)]** value associated with the given property name
|
|
136
138
|
|
|
139
|
+
## filter
|
|
140
|
+
|
|
141
|
+
Generate filter function.
|
|
142
|
+
|
|
143
|
+
### Parameters
|
|
144
|
+
|
|
145
|
+
* `filterBy` **[Object](https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Object)?** 
|
|
146
|
+
|
|
147
|
+
Returns **[Function](https://developer.mozilla.org/docs/Web/JavaScript/Reference/Statements/function)** 
|
|
148
|
+
|
|
137
149
|
## lookup
|
|
138
150
|
|
|
139
151
|
Token lookup
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "pacc",
|
|
3
|
-
"version": "3.4.
|
|
3
|
+
"version": "3.4.1",
|
|
4
4
|
"publishConfig": {
|
|
5
5
|
"access": "public",
|
|
6
6
|
"provenance": true
|
|
@@ -34,7 +34,7 @@
|
|
|
34
34
|
},
|
|
35
35
|
"devDependencies": {
|
|
36
36
|
"ava": "^6.2.0",
|
|
37
|
-
"browser-ava": "^2.3.
|
|
37
|
+
"browser-ava": "^2.3.17",
|
|
38
38
|
"c8": "^10.1.3",
|
|
39
39
|
"documentation": "^14.0.3",
|
|
40
40
|
"semantic-release": "^24.2.3",
|
|
@@ -59,5 +59,8 @@
|
|
|
59
59
|
"arlac77/template-node-component",
|
|
60
60
|
"arlac77/template-typescript"
|
|
61
61
|
]
|
|
62
|
+
},
|
|
63
|
+
"dependencies": {
|
|
64
|
+
"npm-pkgbuild": "^18.1.1"
|
|
62
65
|
}
|
|
63
66
|
}
|