1.1.0 • Published 5 years ago

arcadia-browser-shims v1.1.0

Weekly downloads
2
License
MIT
Repository
github
Last release
5 years ago

arcadia-browser-shims

Browser and JS language shims used by Arcadia

npm version CircleCI

Just require/import arcadia-browser-shims, and the environment will be shimmed.

import 'arcadia-browser-shims';

Included shims

Only browser shims

If you only want to bring in the browser shims and not the JS language shims (from arcadia-js-shims), you can import arcadia-browser-shims/browser-only. If you choose this route, you will want to be sure that you are properly bringing in the language shims for the browsers you support somehow. For example:

import 'arcadia-js-shims/target/es2015';
import 'arcadia-browser-shims/browser-only';