mirror of
https://github.com/modrinth/code.git
synced 2026-08-25 17:14:50 +00:00
8 lines
140 B
JavaScript
8 lines
140 B
JavaScript
export const getArrayOrString = (x) => {
|
|
if (typeof x === 'string' || x instanceof String) {
|
|
return [x]
|
|
} else {
|
|
return x
|
|
}
|
|
}
|