Ensure Point has column typeof number field

This commit is contained in:
Federico 2019-05-24 14:34:04 +02:00
parent 3ec91a8d8a
commit 51345f3ea2

View file

@ -600,7 +600,7 @@ function isPoint(point) {
return (
point &&
typeof point.row === 'number' &&
typeof point.row === 'number'
typeof point.column === 'number'
);
}