backpack panorama로 바꿔주기
injector도 마찬가지
input과 안맞는거
홍이사님이 대충 처리
tripod 이상한 데이터 output 사이끼리
How to check whether a string contains a substring in JavaScript?
Usually I would expect a String.contains() method, but there doesn't seem to be one. What is a reasonable way to check for this?
https://stackoverflow.com/questions/1789945/how-to-check-whether-a-string-contains-a-substring-in-javascript
function getTileFolder(roundPath, seq){ if (roundPath.search('backpack') > 0) return `${roundPath}/${BACKPACK_FOLDER}${seq}_Panorama` else return `${roundPath}/${TILE_FOLDER}${seq}_Panorama` }

Seonglae Cho