1
0
mirror of https://github.com/funamitech/mastodon synced 2024-12-03 09:19:05 +09:00
YuruToot/app/javascript/flavours/glitch/util/privacy_preference.js
2018-07-12 15:31:42 +02:00

6 lines
178 B
JavaScript

export const order = ['public', 'unlisted', 'private', 'direct'];
export function privacyPreference (a, b) {
return order[Math.max(order.indexOf(a), order.indexOf(b), 0)];
};