This repository has been archived on 2024-07-22. You can view files and clone it, but cannot push or open issues or pull requests.
2018-07-12 02:33:11 -07:00
|
|
|
export const order = ['public', 'unlisted', 'private', 'direct'];
|
|
|
|
|
|
|
|
export function privacyPreference (a, b) {
|
|
|
|
return order[Math.max(order.indexOf(a), order.indexOf(b), 0)];
|
2023-02-03 11:52:07 -08:00
|
|
|
}
|