mirror of
https://github.com/modrinth/code.git
synced 2026-08-25 17:14:50 +00:00
* Setup TailwindCSS * Fully setup configuration * Refactor some tailwind variables
8 lines
143 B
JavaScript
8 lines
143 B
JavaScript
export const getArrayOrString = (x) => {
|
|
if (typeof x === "string" || x instanceof String) {
|
|
return [x];
|
|
} else {
|
|
return x;
|
|
}
|
|
};
|