extnd

extend object with properties from n other objects

Usage no npm install needed!

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

README

extnd

var extnd = require('extnd');
var thing = extnd({ prop: 'one', property: 'two' }, { test: 'three' });

returns

{ prop: 'one', property: 'two', test: 'three' };