@segment/analytics-next
Version:
Analytics Next (aka Analytics 2.0) is the latest version of Segment’s JavaScript SDK - enabling you to send your data to any tool without having to learn, test, or use a new API every time.
9 lines • 466 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.isDestinationPluginWithAddMiddleware = void 0;
var isDestinationPluginWithAddMiddleware = function (plugin) {
// FYI: segment's plugin does not currently have an 'addMiddleware' method
return 'addMiddleware' in plugin && plugin.type === 'destination';
};
exports.isDestinationPluginWithAddMiddleware = isDestinationPluginWithAddMiddleware;
//# sourceMappingURL=index.js.map