function cancelSubscription(user, email = null, testMode = false)
// better!
function cancelSubscription(user, options = {})
cancelSubscription(user)
cancelSubscription(user, {
sendConfirmationTo: '
[email protected]',
testMode: true
})
// Ruby
cancel_subscription(user, with_test_mode: true)