UNPKG

@quantlab/handsontable

Version:

Spreadsheet-like data grid editor that provides copy/paste functionality compatible with Excel/Google Docs

9 lines (7 loc) 225 B
/* eslint-disable import/no-unresolved */ import window from 'window'; import * as common from './common'; // Export all helpers to the window. Object.keys(common).forEach((key) => { window[key] = common[key]; });