draven

Riot Games API implementation.

Usage no npm install needed!

<script type="module">
  import draven from 'https://cdn.skypack.dev/draven';
</script>

README

draven

Code Climate Test Coverage Build Status Dependency Status Version

Riot Games API implementation.

var draven = require('draven');

draven.champion
    .findById(1337)
    .then(
        function (champion) {
            // fulfilled
        },
        function (error) {
            // rejection
        }
    )
;

Idea