summaryrefslogtreecommitdiff
path: root/bin/wiki/ImportarDesdeURL/node_modules/decamelize-keys/index.js
diff options
context:
space:
mode:
Diffstat (limited to 'bin/wiki/ImportarDesdeURL/node_modules/decamelize-keys/index.js')
-rw-r--r--bin/wiki/ImportarDesdeURL/node_modules/decamelize-keys/index.js19
1 files changed, 19 insertions, 0 deletions
diff --git a/bin/wiki/ImportarDesdeURL/node_modules/decamelize-keys/index.js b/bin/wiki/ImportarDesdeURL/node_modules/decamelize-keys/index.js
new file mode 100644
index 00000000..f731ca0a
--- /dev/null
+++ b/bin/wiki/ImportarDesdeURL/node_modules/decamelize-keys/index.js
@@ -0,0 +1,19 @@
+'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];
+ });
+};