2026-05-31 13:54:31 +02:00

6 lines
140 B
JavaScript

import { isPoint } from './is-point.mjs';
const isPoint3D = (point) => isPoint(point) && point.hasOwnProperty('z');
export { isPoint3D };