UNPKG

@heroui/shared-utils

Version:

A set of HeroUI utilities

67 lines (65 loc) 1.78 kB
"use strict"; 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/common/clsx.ts var clsx_exports = {}; __export(clsx_exports, { clsx: () => clsx }); module.exports = __toCommonJS(clsx_exports); function toVal(mix) { var k, y, str = ""; if (typeof mix === "string" || typeof mix === "number") { str += mix; } else if (typeof mix === "object") { if (Array.isArray(mix)) { for (k = 0; k < mix.length; k++) { if (mix[k]) { if (y = toVal(mix[k])) { str && (str += " "); str += y; } } } } else { for (k in mix) { if (mix[k]) { str && (str += " "); str += k; } } } } return str; } function clsx(...args) { var i = 0, tmp, x, str = ""; while (i < args.length) { if (tmp = args[i++]) { if (x = toVal(tmp)) { str && (str += " "); str += x; } } } return str; } // Annotate the CommonJS export names for ESM import in node: 0 && (module.exports = { clsx });