2025-03-24 22:56:10 +01:00

4 lines
104 B
JavaScript

const isPoint = (point) => point.hasOwnProperty('x') && point.hasOwnProperty('y');
export { isPoint };