Skip to content

Commit 23846ab

Browse files
Generate latest bundle
1 parent 51d44d2 commit 23846ab

File tree

1 file changed

+2
-12
lines changed

1 file changed

+2
-12
lines changed

dist/FacebookEventForwarder.common.js

Lines changed: 2 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -11,16 +11,6 @@ function isObject(val) {
1111
return val != null && typeof val === 'object' && Array.isArray(val) === false;
1212
}
1313

14-
var isobject = /*#__PURE__*/Object.freeze({
15-
'default': isObject
16-
});
17-
18-
function getCjsExportFromNamespace (n) {
19-
return n && n['default'] || n;
20-
}
21-
22-
var isobject$1 = getCjsExportFromNamespace(isobject);
23-
2414
/* eslint-disable no-undef */
2515
// Copyright 2015 mParticle, Inc.
2616
//
@@ -352,12 +342,12 @@ var isobject$1 = getCjsExportFromNamespace(isobject);
352342
return;
353343
}
354344

355-
if (!isobject$1(config)) {
345+
if (!isObject(config)) {
356346
console.log('\'config\' must be an object. You passed in a ' + typeof config);
357347
return;
358348
}
359349

360-
if (isobject$1(config.kits)) {
350+
if (isObject(config.kits)) {
361351
config.kits[name] = {
362352
constructor: constructor
363353
};

0 commit comments

Comments
 (0)