Skip to content

Commit

Permalink
build the project
Browse files Browse the repository at this point in the history
  • Loading branch information
shtse8 committed Mar 13, 2024
1 parent 71682ed commit 81adcc9
Show file tree
Hide file tree
Showing 3 changed files with 16 additions and 2 deletions.
8 changes: 7 additions & 1 deletion cdn/radash.esm.js
Original file line number Diff line number Diff line change
Expand Up @@ -85,6 +85,12 @@ const isEqual = (x, y) => {
}
return true;
};
const isNullish = (value) => {
return value === null || value === void 0;
};
const isNonNullish = (value) => {
return value !== null && value !== void 0;
};

const group = (array, getGroupId) => {
return array.reduce((acc, item) => {
Expand Down Expand Up @@ -937,4 +943,4 @@ const trim = (str, charsToTrim = " ") => {
return str.replace(regex, "");
};

export { all, alphabetical, assign, boil, callable, camel, capitalize, chain, clone, cluster, compose, construct, counting, crush, dash, debounce, defer, diff, draw, first, flat, fork, get, group, guard, inRange, intersects, invert, isArray, isDate, isEmpty, isEqual, isFloat, isFunction, isInt, isNumber, isObject, isPrimitive, isPromise, isString, isSymbol, iterate, keys, last, list, listify, lowerize, map, mapEntries, mapKeys, mapValues, max, memo, merge, min, objectify, omit, parallel, partial, partob, pascal, pick, proxied, random, range, reduce, replace, replaceOrAppend, retry, select, series, set, shake, shift, shuffle, sift, sleep, snake, sort, sum, template, throttle, title, toFloat, toInt, toggle, trim, tryit as try, tryit, uid, unique, upperize, zip, zipToObject };
export { all, alphabetical, assign, boil, callable, camel, capitalize, chain, clone, cluster, compose, construct, counting, crush, dash, debounce, defer, diff, draw, first, flat, fork, get, group, guard, inRange, intersects, invert, isArray, isDate, isEmpty, isEqual, isFloat, isFunction, isInt, isNonNullish, isNullish, isNumber, isObject, isPrimitive, isPromise, isString, isSymbol, iterate, keys, last, list, listify, lowerize, map, mapEntries, mapKeys, mapValues, max, memo, merge, min, objectify, omit, parallel, partial, partob, pascal, pick, proxied, random, range, reduce, replace, replaceOrAppend, retry, select, series, set, shake, shift, shuffle, sift, sleep, snake, sort, sum, template, throttle, title, toFloat, toInt, toggle, trim, tryit as try, tryit, uid, unique, upperize, zip, zipToObject };
8 changes: 8 additions & 0 deletions cdn/radash.js
Original file line number Diff line number Diff line change
Expand Up @@ -88,6 +88,12 @@ var radash = (function (exports) {
}
return true;
};
const isNullish = (value) => {
return value === null || value === void 0;
};
const isNonNullish = (value) => {
return value !== null && value !== void 0;
};

const group = (array, getGroupId) => {
return array.reduce((acc, item) => {
Expand Down Expand Up @@ -975,6 +981,8 @@ var radash = (function (exports) {
exports.isFloat = isFloat;
exports.isFunction = isFunction;
exports.isInt = isInt;
exports.isNonNullish = isNonNullish;
exports.isNullish = isNullish;
exports.isNumber = isNumber;
exports.isObject = isObject;
exports.isPrimitive = isPrimitive;
Expand Down
Loading

0 comments on commit 81adcc9

Please sign in to comment.