Skip to content

Commit

Permalink
remove unnecessary attributes from filterJSONstreet func
Browse files Browse the repository at this point in the history
  • Loading branch information
Algorush committed Feb 2, 2024
1 parent 05fc582 commit 4e9deaa
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/json-utils.js
Original file line number Diff line number Diff line change
Expand Up @@ -178,7 +178,7 @@ const renameProps = {
intersection: 'not-intersection'
};

function filterJSONstreet (removeProps, renameProps, streetJSON) {
function filterJSONstreet (streetJSON) {
function removeValueCheck (removeVal, value) {
if (AFRAME.utils.deepEqual(removeVal, value) || removeVal === '*') {
return true;
Expand Down

0 comments on commit 4e9deaa

Please sign in to comment.