Skip to content

Instantly share code, notes, and snippets.

@samcorcos
Last active May 31, 2016 08:27
Show Gist options
  • Save samcorcos/3ee6e8e598584200d1a9170a1eece16f to your computer and use it in GitHub Desktop.
Save samcorcos/3ee6e8e598584200d1a9170a1eece16f to your computer and use it in GitHub Desktop.
stripe charge javascript file initial
exports.charge = function(token, amount) {
console.log("Charged");
console.log(token);
}
exports.subscribe = function(token, amount) {
console.log("Subscribed");
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment