Skip to content

Instantly share code, notes, and snippets.

@gillchristian
Created March 31, 2022 09:13
Show Gist options
  • Save gillchristian/921068dcbcb2bd7902eddf441fe1671a to your computer and use it in GitHub Desktop.
Save gillchristian/921068dcbcb2bd7902eddf441fe1671a to your computer and use it in GitHub Desktop.
const isCancelledDirectly =
cancellationReason === CANCELLATION_REASON.UNAWARE_OF_SUBSCRIPTION || CANCELLATION_REASON.MISS_DPG_TITLES;
// ^^^^^^^^^^^^^^^^^^ ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
// a b c
// ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
// d
// a === b => boolean (d)
//
// d || c => boolean | c
// --------------------------------------------------------------------------------------------------------------
const isCancelledDirectly =
cancellationReason === CANCELLATION_REASON.UNAWARE_OF_SUBSCRIPTION ||
// ^^^^^^^^^^^^^^^^^^ ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
// a b
// ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
// e
cancellationReason === CANCELLATION_REASON.MISS_DPG_TITLES;
// ^^^^^^^^^^^^^^^^^^ ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
// c d
// ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
// f
//
// a === b => boolean (e)
// c === d => boolean (f)
//
// e || f => boolean
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment