3 lines
158 B
JavaScript
Raw Permalink Normal View History

2026-05-31 13:21:13 +02:00
import { isPoint } from './is-point';
export const isPoint3D = (point) => isPoint(point) && point.hasOwnProperty('z');
//# sourceMappingURL=is-point-3d.js.map