index.js 202 B

123456789
  1. 'use strict';
  2. var mapObj = require('map-obj');
  3. var camelCase = require('camelcase');
  4. module.exports = function (obj) {
  5. return mapObj(obj, function (key, val) {
  6. return [camelCase(key), val];
  7. });
  8. };