We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 86040db commit 1043129Copy full SHA for 1043129
addon/utils/normalize-payload.js
@@ -7,7 +7,7 @@ function transformObject(object, operation) {
7
let data = {};
8
9
Object.keys(object).forEach((key) => {
10
- data[key[operation]()] = transformObject(object[key], operation);
+ data[String[operation](key)] = transformObject(object[key], operation);
11
});
12
13
return data;
0 commit comments