@techmely/utils
Version:
Collection of helpful JavaScript / TypeScript utils
99 lines (86 loc) • 2.34 kB
JavaScript
/*!
* @techmely/utils
* Copyright(c) 2021-2024 Techmely <techmely.creation@gmail.com>
* MIT Licensed
*/
;
var __defProp = Object.defineProperty;
var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
var __getOwnPropNames = Object.getOwnPropertyNames;
var __hasOwnProp = Object.prototype.hasOwnProperty;
var __export = (target, all) => {
for (var name in all)
__defProp(target, name, { get: all[name], enumerable: true });
};
var __copyProps = (to, from, except, desc) => {
if (from && typeof from === "object" || typeof from === "function") {
for (let key of __getOwnPropNames(from))
if (!__hasOwnProp.call(to, key) && key !== except)
__defProp(to, key, { get: () => from[key], enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable });
}
return to;
};
var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: true }), mod);
// src/removeEmptyObjec.ts
var removeEmptyObjec_exports = {};
__export(removeEmptyObjec_exports, {
removeEmptyObj: () => removeEmptyObj
});
module.exports = __toCommonJS(removeEmptyObjec_exports);
// src/isDefined.ts
function isDefined(val) {
return typeof val !== "undefined";
}
// src/isArray.ts
function isArray(val) {
return val && Array.isArray(val);
}
// src/isEmptyArray.ts
function isEmptyArr(array) {
return array?.length === 0;
}
// src/isObject.ts
function isObject(val) {
return toString.call(val) === "[object Object]";
}
// src/isString.ts
function isString(val) {
return typeof val === "string";
}
// src/isEmpty.ts
function isEmpty(val) {
if (!val) {
return true;
}
if (isArray(val)) {
return isEmptyArr(val);
}
if (isString(val)) {
return val.trim().length === 0;
}
if (val instanceof Map || val instanceof Set) {
return val.size === 0;
}
if (isObject(val)) {
return Object.keys(val).length === 0;
}
return false;
}
// src/isNotEmpty.ts
function isNotEmpty(val) {
return !isEmpty(val);
}
// src/isNotNull.ts
function isNotNull(v) {
return v !== null;
}
// src/removeEmptyObjec.ts
function removeEmptyObj(obj) {
return Object.fromEntries(
Object.entries(obj).filter(([_, v]) => isNotNull(v) && isDefined(v) && isNotEmpty(v))
);
}
// Annotate the CommonJS export names for ESM import in node:
0 && (module.exports = {
removeEmptyObj
});