README
Polyinherit
Modifies the function prototype for the possibility of using multiple inheritance
Usage inherit
function() { }.inherit(somefunc1, somefunc2)
Usage proto
function() { }.proto({
someMethod: function() { }
});
Modifies the function prototype for the possibility of using multiple inheritance
<script type="module">
import polyinherit from 'https://cdn.skypack.dev/polyinherit';
</script>
Modifies the function prototype for the possibility of using multiple inheritance
function() { }.inherit(somefunc1, somefunc2)
function() { }.proto({
someMethod: function() { }
});