Files
AstralRinth/apps/knossos/src/composables/query.js
2024-07-03 13:05:14 -07:00

8 lines
140 B
JavaScript

export const getArrayOrString = (x) => {
if (typeof x === 'string' || x instanceof String) {
return [x]
} else {
return x
}
}