ember-cli-patch-stripejs

A simple addon to patch the Stripe object for JS

Usage no npm install needed!

<script type="module">
  import emberCliPatchStripejs from 'https://cdn.skypack.dev/ember-cli-patch-stripejs';
</script>

README

This addon will add Stripe or patch it depending on your enviornment

In development/test/server builds you will get the following

<script type="text/javascript">
    var Stripe = {
        setPublishableKey: function(){
            console.log("Setting publishable key.");
        },
        card: {
            createToken: function() {
                console.log("createToken was called.");
            }
        }
    };
</script>

In production you will get the real stripe client library

<script type="text/javascript" src="https://js.stripe.com/v2/"></script>