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

6 lines
140 B
JavaScript

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