Skip to content

Commit

Permalink
Fix.
Browse files Browse the repository at this point in the history
  • Loading branch information
regorxxx committed Feb 19, 2023
1 parent 15f0ee8 commit be7f7ec
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion helpers/helpers_xxx_basic_js.js
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ function getNested(obj, ...args) {
return args.reduce((obj, level) => obj && obj[level], obj);
}

function setNested(obj, value, ...args) => {
function setNested(obj, value, ...args) {
const len = args.length - 1;
return args.reduce((obj, level, idx) => {
if (obj && len === idx && obj.hasOwnProperty(level)) {obj[level] = value;}
Expand Down
2 changes: 1 addition & 1 deletion main/search_by_distance/search_by_distance.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
'use strict';
//10/02/23
//19/02/23

/*
Search by Distance
Expand Down

0 comments on commit be7f7ec

Please sign in to comment.