mirror of
https://github.com/Tria-plc/emaui.git
synced 2026-08-27 09:42:55 +00:00
7 lines
161 B
JavaScript
7 lines
161 B
JavaScript
//#region src/compat/_internal/toArray.ts
|
|
function toArray(value) {
|
|
return Array.isArray(value) ? value : Array.from(value);
|
|
}
|
|
//#endregion
|
|
export { toArray };
|