0
0
Fork 0
mirror of https://github.com/lunaisnotaboy/mastodon.git synced 2025-01-09 05:56:59 +00:00
mastodon/app/javascript/flavours/glitch/utils/privacy_preference.js

6 lines
178 B
JavaScript
Raw Normal View History

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