Merge pull request #340 from fdionisi/fix/is-point

Ensure Point has `column` typeof number field
This commit is contained in:
Max Brunsfeld 2019-05-24 07:35:00 -07:00 committed by GitHub
commit 621efeb543
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

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