UNPKG

355 BJavaScriptView Raw
1"use strict";
2Object.defineProperty(exports, "__esModule", { value: true });
3exports.isDurable = void 0;
4const constants_1 = require("@nestjs/common/constants");
5function isDurable(provider) {
6 const metadata = Reflect.getMetadata(constants_1.SCOPE_OPTIONS_METADATA, provider);
7 return metadata && metadata.durable;
8}
9exports.isDurable = isDurable;