@tabular-json/tabular-json
Version:
Tabular-JSON: a superset of JSON with CSV-like tables
7 lines • 305 B
JavaScript
export function isTabular(value) {
return Array.isArray(value) && value.length > 0 && value.every(isObject);
}
export function isObject(value) {
return typeof value === 'object' && value !== null && value.constructor === Object; // do not match on classes or Array
}
//# sourceMappingURL=is.js.map