mirror of
https://github.com/hex248/ob248.com.git
synced 2026-02-09 19:23:02 +00:00
14 lines
439 B
JavaScript
14 lines
439 B
JavaScript
/**
|
|
* @license lucide-react v0.563.0 - ISC
|
|
*
|
|
* This source code is licensed under the ISC license.
|
|
* See the LICENSE file in the root directory of this source tree.
|
|
*/
|
|
|
|
const mergeClasses = (...classes) => classes.filter((className, index, array) => {
|
|
return Boolean(className) && className.trim() !== "" && array.indexOf(className) === index;
|
|
}).join(" ").trim();
|
|
|
|
export { mergeClasses };
|
|
//# sourceMappingURL=mergeClasses.js.map
|