mastodon/app/javascript/flavours/glitch/util/privacy_preference.js

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)];
};