Skip to content

schlicker/dot-notate

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

31 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

dot-notate

dot-notate converts an object into a one dimensional object with its attributes keys separated by . or another separator.

Examples

Default separator

var dotNotate = require('dot-notate');

console.log(dotNotate({ this: { is: 'an example' } }));

The above code will result in the following object:

{
    "this.is": "an example"
}

Custom separator

var dotNotate = require('dot-notate');

console.log(dotNotate({ this: { is: 'an example' } }, '|'));

The above code will result in the following object:

{
    "this|is": "an example"
}

Installation

npm install --save dot-notate

Author

Johannes Schlicker

License

This project is licensed under the MIT License.

About

No description, website, or topics provided.

Resources

License

Stars

Watchers

Forks

Packages

No packages published