@takeshape/util 11.103.4 → 11.103.8
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/dist/common/index.d.ts
CHANGED
|
@@ -22,7 +22,6 @@ export * from './path-to-string.ts';
|
|
|
22
22
|
export * from './persisted-queries.ts';
|
|
23
23
|
export * from './predicate.ts';
|
|
24
24
|
export * from './search-params.ts';
|
|
25
|
-
export * from './set-in.ts';
|
|
26
25
|
export * from './sets.ts';
|
|
27
26
|
export * from './sleep.ts';
|
|
28
27
|
export * from './sort-object.ts';
|
package/dist/common/index.js
CHANGED
|
@@ -22,7 +22,6 @@ export * from "./path-to-string.js";
|
|
|
22
22
|
export * from "./persisted-queries.js";
|
|
23
23
|
export * from "./predicate.js";
|
|
24
24
|
export * from "./search-params.js";
|
|
25
|
-
export * from "./set-in.js";
|
|
26
25
|
export * from "./sets.js";
|
|
27
26
|
export * from "./sleep.js";
|
|
28
27
|
export * from "./sort-object.js";
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@takeshape/util",
|
|
3
|
-
"version": "11.103.
|
|
3
|
+
"version": "11.103.8",
|
|
4
4
|
"description": "Shared utilities",
|
|
5
5
|
"homepage": "https://www.takeshape.io",
|
|
6
6
|
"repository": {
|
|
@@ -45,8 +45,8 @@
|
|
|
45
45
|
"tiny-invariant": "^1.2.0",
|
|
46
46
|
"uint8array-extras": "^1.4.0",
|
|
47
47
|
"url-parse": "^1.5.3",
|
|
48
|
-
"@takeshape/
|
|
49
|
-
"@takeshape/
|
|
48
|
+
"@takeshape/prism": "11.103.8",
|
|
49
|
+
"@takeshape/routing": "11.103.8"
|
|
50
50
|
},
|
|
51
51
|
"devDependencies": {
|
|
52
52
|
"@types/classnames": "^2.2.9",
|
package/dist/common/set-in.d.ts
DELETED
package/dist/common/set-in.js
DELETED
|
@@ -1,7 +0,0 @@
|
|
|
1
|
-
import clone from 'lodash/fp/clone.js';
|
|
2
|
-
import curry from 'lodash/fp/curry.js';
|
|
3
|
-
import setWith from 'lodash/fp/setWith.js';
|
|
4
|
-
/**
|
|
5
|
-
* Same as lodash/set but does not mutate the arguments
|
|
6
|
-
*/
|
|
7
|
-
export const setIn = curry((obj, path, value) => setWith(clone, path, value, clone(obj)));
|