7 lines
143 B
JavaScript
Executable File
7 lines
143 B
JavaScript
Executable File
function coerceArray(value) {
|
|
return Array.isArray(value) ? value : [value];
|
|
}
|
|
|
|
export { coerceArray };
|
|
//# sourceMappingURL=array.mjs.map
|