1
0
mirror of https://github.com/glitch-soc/mastodon.git synced 2025-02-19 00:53:51 -05:00

6 lines
178 B
JavaScript
Raw Normal View History

2018-07-12 11:33:11 +02:00
export const order = ['public', 'unlisted', 'private', 'direct'];
export function privacyPreference (a, b) {
return order[Math.max(order.indexOf(a), order.indexOf(b), 0)];
};