Skip to content

Commit

Permalink
fix: rebuild after format
Browse files Browse the repository at this point in the history
  • Loading branch information
yubaoquan committed May 2, 2024
1 parent 8d7f5fe commit f9984f5
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 4 deletions.
10 changes: 8 additions & 2 deletions cdn/radash.esm.js
Original file line number Diff line number Diff line change
Expand Up @@ -698,7 +698,10 @@ const pick = (obj, keys2) => {
const pickBy = (obj, predicate = () => true) => {
if (!obj)
return {};
return pick(obj, Object.keys(obj).filter((key) => predicate(obj[key])));
return pick(
obj,
Object.keys(obj).filter((key) => predicate(obj[key]))
);
};
const omit = (obj, keys2) => {
if (!obj)
Expand All @@ -716,7 +719,10 @@ const omit = (obj, keys2) => {
const omitBy = (obj, predicate = () => true) => {
if (!obj)
return {};
return omit(obj, Object.keys(obj).filter((key) => predicate(obj[key])));
return omit(
obj,
Object.keys(obj).filter((key) => predicate(obj[key]))
);
};
const get = (value, path, defaultValue) => {
const segments = path.split(/[\.\[\]]/g);
Expand Down
10 changes: 8 additions & 2 deletions cdn/radash.js
Original file line number Diff line number Diff line change
Expand Up @@ -701,7 +701,10 @@ var radash = (function (exports) {
const pickBy = (obj, predicate = () => true) => {
if (!obj)
return {};
return pick(obj, Object.keys(obj).filter((key) => predicate(obj[key])));
return pick(
obj,
Object.keys(obj).filter((key) => predicate(obj[key]))
);
};
const omit = (obj, keys2) => {
if (!obj)
Expand All @@ -719,7 +722,10 @@ var radash = (function (exports) {
const omitBy = (obj, predicate = () => true) => {
if (!obj)
return {};
return omit(obj, Object.keys(obj).filter((key) => predicate(obj[key])));
return omit(
obj,
Object.keys(obj).filter((key) => predicate(obj[key]))
);
};
const get = (value, path, defaultValue) => {
const segments = path.split(/[\.\[\]]/g);
Expand Down

0 comments on commit f9984f5

Please sign in to comment.