UNPKG

215 BJavaScriptView Raw
1'use strict';
2
3if (process.env.NODE_ENV === 'production') {
4 const shim = new Proxy((() => {}), {
5 get: () => shim,
6 apply: () => shim
7 });
8
9 module.exports = shim;
10} else {
11 module.exports = require('./dist');
12}