iterable-string-interceptor 2.1.0 → 2.2.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/README.md +3 -3
- package/package.json +4 -4
package/README.md
CHANGED
|
@@ -11,7 +11,7 @@
|
|
|
11
11
|
|
|
12
12
|
# iterable-string-interceptor
|
|
13
13
|
|
|
14
|
-
Intercept Iterable string - backbone for
|
|
14
|
+
Intercept Iterable string - backbone for template engines
|
|
15
15
|
|
|
16
16
|
<!-- skip-example -->
|
|
17
17
|
|
|
@@ -87,8 +87,8 @@ and asking a transformer for a replacement iterable string.
|
|
|
87
87
|
|
|
88
88
|
### Parameters
|
|
89
89
|
|
|
90
|
-
* `source` **Iterable<[string](https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/String)
|
|
91
|
-
* `transform` **[ExpressionTransformer](#expressiontransformer)
|
|
90
|
+
* `source` **Iterable<[string](https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/String)>** 
|
|
91
|
+
* `transform` **[ExpressionTransformer](#expressiontransformer)** 
|
|
92
92
|
* `leadIn` **[string](https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/String)** expression entry sequence (optional, default `"{{"`)
|
|
93
93
|
* `leadOut` **[string](https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/String)** expression exit sequence (optional, default `"}}"`)
|
|
94
94
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "iterable-string-interceptor",
|
|
3
|
-
"version": "2.
|
|
3
|
+
"version": "2.2.0",
|
|
4
4
|
"publishConfig": {
|
|
5
5
|
"access": "public"
|
|
6
6
|
},
|
|
@@ -8,7 +8,7 @@
|
|
|
8
8
|
"exports": {
|
|
9
9
|
".": "./src/iterable-string-interceptor.mjs"
|
|
10
10
|
},
|
|
11
|
-
"description": "Intercept Iterable string - backbone for
|
|
11
|
+
"description": "Intercept Iterable string - backbone for template engines",
|
|
12
12
|
"keywords": [
|
|
13
13
|
"chunk",
|
|
14
14
|
"template"
|
|
@@ -29,10 +29,10 @@
|
|
|
29
29
|
"lint:docs": "documentation lint ./src/**/*.mjs"
|
|
30
30
|
},
|
|
31
31
|
"devDependencies": {
|
|
32
|
-
"ava": "^
|
|
32
|
+
"ava": "^5.0.0",
|
|
33
33
|
"c8": "^7.12.0",
|
|
34
34
|
"documentation": "^14.0.0",
|
|
35
|
-
"semantic-release": "^19.0.
|
|
35
|
+
"semantic-release": "^19.0.5"
|
|
36
36
|
},
|
|
37
37
|
"engines": {
|
|
38
38
|
"node": ">=16.17.0"
|