pax_global_header00006660000000000000000000000064126722331350014516gustar00rootroot0000000000000052 comment=755c3c32dcd726382b1fc837180f79f39506521a decamelize-keys-1.1.0/000077500000000000000000000000001267223313500145705ustar00rootroot00000000000000decamelize-keys-1.1.0/.editorconfig000066400000000000000000000003371267223313500172500ustar00rootroot00000000000000root = true [*] indent_style = tab end_of_line = lf charset = utf-8 trim_trailing_whitespace = true insert_final_newline = true [package.json] indent_style = space indent_size = 2 [*.md] trim_trailing_whitespace = false decamelize-keys-1.1.0/.gitattributes000066400000000000000000000000141267223313500174560ustar00rootroot00000000000000* text=auto decamelize-keys-1.1.0/.gitignore000066400000000000000000000000151267223313500165540ustar00rootroot00000000000000node_modules decamelize-keys-1.1.0/.travis.yml000066400000000000000000000001011267223313500166710ustar00rootroot00000000000000language: node_js node_js: - '5' - '4' - '0.12' - '0.10' decamelize-keys-1.1.0/index.js000066400000000000000000000007441267223313500162420ustar00rootroot00000000000000'use strict'; var mapObj = require('map-obj'); var decamelize = require('decamelize'); module.exports = function (input, separator, options) { if (typeof separator !== 'string') { options = separator; separator = null; } options = options || {}; separator = separator || options.separator; var exclude = options.exclude || []; return mapObj(input, function (key, val) { key = exclude.indexOf(key) === -1 ? decamelize(key, separator) : key; return [key, val]; }); }; decamelize-keys-1.1.0/license000066400000000000000000000022061267223313500161350ustar00rootroot00000000000000The MIT License (MIT) Copyright (c) Sindre Sorhus (sindresorhus.com), Dmirty Sobolev Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. decamelize-keys-1.1.0/package.json000066400000000000000000000021051267223313500170540ustar00rootroot00000000000000{ "name": "decamelize-keys", "version": "1.1.0", "description": "Convert object keys from camelCase to lowercase with a custom separator", "license": "MIT", "repository": "dsblv/decamelize-keys", "author": { "name": "Sindre Sorhus", "email": "sindresorhus@gmail.com", "url": "http://sindresorhus.com" }, "contributors": [ { "name": "Dmirty Sobolev", "email": "disobolev@icloud.com", "url": "https://github.com/dsblv" } ], "engines": { "node": ">=0.10.0" }, "scripts": { "test": "xo && ava" }, "files": [ "index.js" ], "keywords": [ "map", "obj", "object", "key", "keys", "value", "values", "val", "iterate", "decamelize", "decamelcase", "lowercase", "camelcase", "camel-case", "camel", "case", "dash", "hyphen", "dot", "underscore", "separator", "string", "text", "convert" ], "devDependencies": { "ava": "*", "xo": "*" }, "dependencies": { "decamelize": "^1.1.0", "map-obj": "^1.0.0" } } decamelize-keys-1.1.0/readme.md000066400000000000000000000023231267223313500163470ustar00rootroot00000000000000# decamelize-keys [![Build Status](https://travis-ci.org/dsblv/decamelize-keys.svg?branch=master)](https://travis-ci.org/dsblv/decamelize-keys) > Convert object keys from camelCase to lowercase with a custom separator using [`decamelize`](https://github.com/sindresorhus/decamelize) *This project was forked from [`camelcase-keys`](https://github.com/sindresorhus/camelcase-keys) and converted to do the opposite* ## Install ```sh $ npm install --save decamelize-keys ``` ## Usage ```js const decamelizeKeys = require('decamelize-keys'); decamelizeKeys({fooBar: true}, '-'); //=> {'foo-bar': true} ``` ## API ### decamelizeKeys(input, [separator], [options]) ### input Type: `object` *Required* Object to decamelize. ### separator Type: `string` Default: `_` A string to insert between words. ### options Type: `object` #### separator Type: `string` Default: `_` Alternative way to specify [separator](#separator). #### exclude Type: `array` Default: `[]` Exclude keys from being decamelized. ## Related See [`camelcase-keys`](https://github.com/sindresorhus/camelcase-keys) for the inverse. ## License MIT © [Sindre Sorhus](http://sindresorhus.com), [Dmirty Sobolev](https://github.com/dsblv) decamelize-keys-1.1.0/test.js000066400000000000000000000006101267223313500161020ustar00rootroot00000000000000import test from 'ava'; import fn from './'; test('decamelization', t => { t.true(fn({fooBar: true}, '-')['foo-bar']); }); test('separator as an option', t => { t.true(fn({fooBar: true}, {separator: '-'})['foo-bar']); }); test('default separator', t => { t.true(fn({fooBar: true}).foo_bar); }); test('exclude key', t => { t.true(fn({fooBar: true}, {exclude: ['fooBar']}).fooBar); });