Skip to content

Commit be7f7ec

Browse files
committed
Fix.
1 parent 15f0ee8 commit be7f7ec

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

helpers/helpers_xxx_basic_js.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@ function getNested(obj, ...args) {
6565
return args.reduce((obj, level) => obj && obj[level], obj);
6666
}
6767

68-
function setNested(obj, value, ...args) => {
68+
function setNested(obj, value, ...args) {
6969
const len = args.length - 1;
7070
return args.reduce((obj, level, idx) => {
7171
if (obj && len === idx && obj.hasOwnProperty(level)) {obj[level] = value;}

main/search_by_distance/search_by_distance.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
'use strict';
2-
//10/02/23
2+
//19/02/23
33

44
/*
55
Search by Distance

0 commit comments

Comments
 (0)