PATH:
usr
/
local
/
lib
/
node_modules
/
bower
/
lib
/
node_modules
/
camelcase-keys
'use strict'; var mapObj = require('map-obj'); var camelCase = require('camelcase'); module.exports = function (input, options) { options = options || {}; var exclude = options.exclude || []; return mapObj(input, function (key, val) { key = exclude.indexOf(key) === -1 ? camelCase(key) : key; return [key, val]; }); };
[+]
..
[-] readme.md
[edit]
[+]
node_modules
[-] package.json
[edit]
[-] index.js
[edit]
[-] license
[edit]