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