index.js 222 B

12345678
  1. /* eslint-disable import/no-unresolved */
  2. import window from 'window';
  3. import * as common from './common';
  4. // Export all helpers to the window.
  5. Object.keys(common).forEach(function (key) {
  6. window[key] = common[key];
  7. });