UNPKG

@humanspeak/svelte-headless-table

Version:

A powerful, headless table library for Svelte that provides complete control over table UI while handling complex data operations like sorting, filtering, pagination, grouping, and row expansion. Build custom, accessible data tables with zero styling opin

5 lines (4 loc) 224 B
export const nonNull = (value) => value !== null; export const nonUndefined = (value) => value !== undefined; export const nonNullish = (value) => value != null; export const isNumber = (value) => typeof value === 'number';