UNPKG

gazeplotter

Version:

Gazeplotter is a Svelte application for visualizing eye-tracking data.

9 lines (8 loc) 235 B
export class AbstractEyeDeserializer { getIndex(header, name) { const index = header.indexOf(name); if (index === -1) throw new Error(`Column ${name} not found in header`); return index; } }