mirror of
https://github.com/xibyte/jsketcher
synced 2026-01-04 14:59:32 +01:00
8 lines
No EOL
129 B
JavaScript
8 lines
No EOL
129 B
JavaScript
|
|
export function toIdAndOverrides(ref) {
|
|
if (Array.isArray(ref)) {
|
|
return ref;
|
|
} else {
|
|
return [ref, undefined]
|
|
}
|
|
} |