openwrt_helloworld/nikki/files/ucode/include.uc
gitea-action 4d12f9dece nikki: sync upstream
last commit: 17234645ba
2025-02-23 17:00:29 +08:00

9 lines
141 B
Ucode

export function ensure_array(obj) {
if (obj == null) {
return [];
}
if (type(obj) == 'array') {
return uniq(obj);
}
return [obj];
};