Skip to content
/ dotize Public
forked from vardars/dotize

Convert complex js object to dot notation js object

License

Notifications You must be signed in to change notification settings

gimalon/dotize

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

49 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

npm version Bower version Build Status codecov

dotize

Convert (Complex js object)

{
  "status": "success",
  "auth": {
    "code": 123,
    "name": "qwerty asdfgh"
  }
}

to (Dot notation js object)

{
  "status": "success",
  "auth.code": 123,
  "auth.name": "qwerty asdfgh"
}
npm install dotize

bower

bower install dotize
npm install -g mocha
mocha test/test.js

About

Convert complex js object to dot notation js object

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages

  • JavaScript 98.1%
  • HTML 1.9%