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