UNPKG

@drift-labs/common

Version:

Common functions for Drift

10 lines 291 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.assert = void 0; function assert(condition, error) { if (!condition) { throw new Error(error || 'Unspecified AssertionError'); } } exports.assert = assert; //# sourceMappingURL=assert.js.map