Sha256: 8bddfc40a592ebfee5e0e647cf43d2356cc22c121f1b56c65a1bbea3115bb1c6
Contents?: true
Size: 809 Bytes
Versions: 30
Compression:
Stored size: 809 Bytes
Contents
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.default = _using; function _using(stack, value, isAwait) { if (value === null || value === void 0) return value; if (Object(value) !== value) { throw new TypeError("using declarations can only be used with objects, functions, null, or undefined."); } if (isAwait) { var dispose = value[Symbol.asyncDispose || Symbol.for("Symbol.asyncDispose")]; } if (dispose === null || dispose === void 0) { dispose = value[Symbol.dispose || Symbol.for("Symbol.dispose")]; } if (typeof dispose !== "function") { throw new TypeError(`Property [Symbol.dispose] is not a function.`); } stack.push({ v: value, d: dispose, a: isAwait }); return value; } //# sourceMappingURL=using.js.map
Version data entries
30 entries across 26 versions & 2 rubygems