1
0
Files
AstralRinth/composables/query.js
2023-03-14 15:33:10 -07:00

8 lines
140 B
JavaScript

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