-
Notifications
You must be signed in to change notification settings - Fork 1
Open
Labels
Description
Issue is the component require()s that are used here. Browserify thinks they are require()-ing npm modules.
This can be fixed with a hack:
try {
_.contains = require('lodash.contains');
_.isArray = require('lodash.isarray');
_.isFinite = require('lodash.isfinite');
_.isNaN = require('lodash.isnan');
} catch (e) {
var browserifyHack = require;
_.contains = browserifyHack('contains');
_.isArray = browserifyHack('isArray');
_.isFinite = browserifyHack('is-finite');
_.isNaN = browserifyHack('is-nan');
}Reactions are currently unavailable