UNPKG

@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.

10 lines 277 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.sleep = void 0; var sleep = function (time) { return new Promise(function (resolve) { setTimeout(resolve, time); }); }; exports.sleep = sleep; //# sourceMappingURL=sleep.js.map