Skip to content

Commit 8ca0030

Browse files
committed
Pass array items as separate args to joinCoords function
1 parent 8facd2e commit 8ca0030

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/dataValidation.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@ export default function DataValidator(schema) {
7171
};
7272

7373
this.joinCoords = function(coords) {
74-
let c = joinCoords(coords);
74+
let c = joinCoords.apply(null, coords);
7575

7676
if (c.startsWith(JOIN_SYMBOL))
7777
c = c.slice(1);

0 commit comments

Comments
 (0)