Skip to content

Commit f6f3d11

Browse files
authored
Update utils.js
1 parent a506cc4 commit f6f3d11

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

lib/utils.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -972,7 +972,7 @@ exports.each = function(arr, fn) {
972972
* @param {String|Number} newKey
973973
* @api private
974974
*/
975-
exports.renameObjKey = function (oldObj, oldKey, newKey) {
975+
exports.renameObjKey = function(oldObj, oldKey, newKey) {
976976
const keys = Object.keys(oldObj);
977977
return keys.reduce(
978978
(acc, val) => {
@@ -985,7 +985,7 @@ exports.renameObjKey = function (oldObj, oldKey, newKey) {
985985
},
986986
{}
987987
);
988-
}
988+
};
989989

990990
/*!
991991
* ignore

0 commit comments

Comments
 (0)