1.0.2 • Published 4 years ago

eqdict v1.0.2

Weekly downloads
5
License
MIT
Repository
github
Last release
4 years ago

eqdict

npm version

A dictionary / Record / JavaScript object can be generated from a string with Equal (=) sign. For example,

  • 'a=1 b="x y z"' => { a: '1', b: 'x y z' }

Usage

import eqdict from 'eqdict'
console.log(eqdict('a=1 b="x y z"'))

Usage on the browser

<script src="https://unpkg.com/eqdict@:version/umd/index.min.js"></script>
<script>
console.log(eqdict('a=1 b="x y z"'))
</script>