diff options
Diffstat (limited to 'src/lib/info.ts')
| -rw-r--r-- | src/lib/info.ts | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/lib/info.ts b/src/lib/info.ts index 9338c75..3753782 100644 --- a/src/lib/info.ts +++ b/src/lib/info.ts @@ -18,7 +18,7 @@ export function getSize(rowdata: any[]): number { */ export function info(this: Frame): void { if (this.rowdata.length === 0) { - throw new Error('Frame is empty'); + console.log('Frame is empty'); } else { const info: Array<any[]> = []; info.push(['#', 'Column Name', 'Types', 'Empty Values']); |
