mirror of
https://github.com/Alvin-Zilverstand/return-youtube-dislike.git
synced 2026-09-12 09:58:20 +02:00
e500088e65
Add Firefox data consent, repair contributor sign-in, and introduce optional Hide clutter buttons. Harden video navigation, voting, and action layouts with shared browser regression coverage and reproducible release packaging.
22 lines
374 B
JavaScript
22 lines
374 B
JavaScript
const {
|
|
DISLIKED_STATE,
|
|
DISLIKE_ACTION,
|
|
LIKED_STATE,
|
|
LIKE_ACTION,
|
|
NEUTRAL_STATE,
|
|
applyVoteTransitionCounts,
|
|
resolveVoteTransition,
|
|
shouldSubmitVote,
|
|
} = require("./vote-transition-core");
|
|
|
|
export {
|
|
LIKED_STATE,
|
|
DISLIKED_STATE,
|
|
NEUTRAL_STATE,
|
|
LIKE_ACTION,
|
|
DISLIKE_ACTION,
|
|
resolveVoteTransition,
|
|
applyVoteTransitionCounts,
|
|
shouldSubmitVote,
|
|
};
|