flatkeys

0.3.2 • Public • Published

flatKeys

npm install flatkeys

Flatten object key hierarchies into a list of strings using a custom separator. Used in Konf to populate a config object from process.env variables.

Usage

flatKeys({
    zero: {
        one: 1,
        two: {
            three: 3
        }
    }
})

Returns the array

[
    'zero'
    'zero_one'
    'zero_two'
    'zero_two_three'
]

Options

flatKeys(keys, {
    sep    : '_'         // separator
    snake  : true        // convert keys from camelCase to snake_case
    filter : toLowerCase // transformation function, defaults to `String.prototype.toLowerCase`
})

Running the example above with { sep: ':', filter: String.prototype.toUpperCase } would yield

[
    'ZERO'
    'ZERO:ONE'
    'ZERO:TWO'
    'ZERO:TWO:THREE'
]

License

MIT

Readme

Keywords

none

Package Sidebar

Install

npm i flatkeys

Weekly Downloads

5

Version

0.3.2

License

MIT

Last publish

Collaborators

  • ricardobeat