dotnotation

```js var object = { shipping: { europe: '15', america: '22' } };

Usage no npm install needed!

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

README

API

var object = {
  shipping: {
    europe: '15',
    america: '22'
  }
};

it('returns 15', function () {
  dotnotation(object, 'shipping.europe').should.eql('15');
});

it('returns 22', function () {
  dotnotation(object, 'shipping.america').should.eql('22');
});