6 lines
140 B
JavaScript
Raw Permalink Normal View History

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