We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 32aa219 commit b6bd813Copy full SHA for b6bd813
src/lib/polygon.js
@@ -31,12 +31,6 @@ var polygon = module.exports = {};
31
* returns boolean: is pt inside the polygon (including on its edges)
32
*/
33
polygon.tester = function tester(ptsIn) {
34
-
35
- // Throw an error if any code tries to pass this no
36
- // longer supported argument shape. The local multitester became
37
- // obsolete when introducing click-to-select in PR #2944.
38
- if(Array.isArray(ptsIn[0][0])) throw new Error('multitester called!');
39
40
var pts = ptsIn.slice(),
41
xmin = pts[0][0],
42
xmax = xmin,
0 commit comments