value-find

```sh npm i -s value-find # or yarn add value-find ```

Usage no npm install needed!

<script type="module">
  import valueFind from 'https://cdn.skypack.dev/value-find';
</script>

README

value-find

npm i -s value-find
# or
yarn add value-find
import valueFind from "value-find";

var data = {
  example: {
    key: [
      {
        value: 1
      },
      {
        value: "hello world"
      },
      {
        value: [1, 2, 3, 4]
      }
    ]
  }
};

var test = valueFind(data, 'example.key[].value'); // console: [1, "hello world", [1,2,3,4]]