Skip to content

elcharitas/js-dot

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

11 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Welcome to js-dot 👋

Version Documentation Maintenance License: MIT Twitter: elcharitas huntr.dev

JavaScript dot notation handler

Install

$ npm i -D js-dot

Usage

const jsDot = require('jsdot')

const data = {
  foo: {
    "bar": {
      "sample": "jsDot"
    }
  }
}

// ======== Get Data ========
jsDot.get(data, "foo.bar.sample") // outputs "jsDot"
// ---- or -----
data.dot("foo.bar.sample") // outputs "jsDot"

// ======== Get Data with default ========
jsDot.get(data, "foo.nofoo", "foo") // outputs "foo"

// ======== Set Data ========
jsDot.set(data, "foo.bar", "bar")
// ----- or ------
data.dot("foo.bar", "bar")
console.log(data.foo.bar.sample) // undefined

Author

👤 Jonathan Irhodia

🤝 Contributing

Contributions, issues and feature requests are welcome!
Feel free to check issues page. You can also take a look at the contributing guide.

Show your support

Give a ⭐️ if this project helped you!

📝 License

Copyright © 2020 Jonathan Irhodia.
This project is MIT licensed.


About

dot notation selector much similar to lodash.get but smaller and faster

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published