@lionweb/ts-utils 0.7.2 → 0.8.0-beta.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.
@@ -17,7 +17,7 @@ export declare const concatenator: (separator: string) => StringsMapper;
17
17
  export declare const lastOf: StringsMapper;
18
18
  /**
19
19
  * @return a {@link StringsMapper function} that chains the given {@link StringsMapper functions} (at least 1),
20
- * in thar order.
20
+ * in that order.
21
21
  * (This is straightforward functional composition.)
22
22
  */
23
23
  export declare const chain: (stringsMapper: StringsMapper, ...stringMappers: StringMapper[]) => StringsMapper;
@@ -9,7 +9,7 @@ export const concatenator = (separator) => (...strings) => strings.join(separato
9
9
  export const lastOf = (...strings) => strings[strings.length - 1];
10
10
  /**
11
11
  * @return a {@link StringsMapper function} that chains the given {@link StringsMapper functions} (at least 1),
12
- * in thar order.
12
+ * in that order.
13
13
  * (This is straightforward functional composition.)
14
14
  */
15
15
  export const chain = (stringsMapper, ...stringMappers) => (...strings) => {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@lionweb/ts-utils",
3
- "version": "0.7.2",
3
+ "version": "0.8.0-beta.0",
4
4
  "description": "Utilities for LionWeb JSON",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",
@@ -24,7 +24,7 @@ export const lastOf: StringsMapper =
24
24
 
25
25
  /**
26
26
  * @return a {@link StringsMapper function} that chains the given {@link StringsMapper functions} (at least 1),
27
- * in thar order.
27
+ * in that order.
28
28
  * (This is straightforward functional composition.)
29
29
  */
30
30
  export const chain = (stringsMapper: StringsMapper, ...stringMappers: StringMapper[]): StringsMapper =>