Merge pull request #340 from fdionisi/fix/is-point
Ensure Point has `column` typeof number field
This commit is contained in:
commit
621efeb543
1 changed files with 1 additions and 1 deletions
|
|
@ -600,7 +600,7 @@ function isPoint(point) {
|
|||
return (
|
||||
point &&
|
||||
typeof point.row === 'number' &&
|
||||
typeof point.row === 'number'
|
||||
typeof point.column === 'number'
|
||||
);
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue