UNPKG

@clearbit-dcp/clearbit.js-core

Version:

The hassle-free way to integrate analytics into any web application.

26 lines (18 loc) 454 B
'use strict'; /** * Analytics.js * * (C) 2013-2016 Segment.io Inc. */ var Analytics = require('./analytics'); // Create a new `analytics` singleton. var analytics = new Analytics(); // Expose `require`. // TODO(ndhoule): Look into deprecating, we no longer need to expose it in tests analytics.require = require; // Expose package version. analytics.VERSION = require('../package.json').version; /* * Exports. */ module.exports = analytics;