{"ScriptPreparationCode":"// A simple square (5 vertices)\r\nconst smallPoly = turf.polygon([[\r\n [-1, -1], [1, -1], [1, 1], [-1, 1], [-1, -1]\r\n]]);\r\n\r\n// A complex \u0022circle\u0022 (100 vertices)\r\nconst largePoly = turf.circle([0, 0], 2, {steps: 100});\r\n\r\n// The polygon we are testing against\r\nconst target = turf.polygon([[\r\n [0.5, 0.5], [1.5, 0.5], [1.5, 1.5], [0.5, 1.5], [0.5, 0.5]\r\n]]);","TestCases":[{"Name":"1","Code":"turf.booleanIntersects(smallPoly, target);","IsDeferred":false},{"Name":"2","Code":"turf.booleanIntersects(largePoly, target);","IsDeferred":false}]}