augmenttoolkit / node_modules /@nestjs /common /module-utils /utils /generate-options-injection-token.util.js
Leon4gr45's picture
Include updated package-lock.json (part 10)
cfbbc1a verified
Raw
History Blame Contribute Delete
414 Bytes
"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
exports.generateOptionsInjectionToken = generateOptionsInjectionToken;
const random_string_generator_util_1 = require("../../utils/random-string-generator.util");
function generateOptionsInjectionToken() {
const hash = (0, random_string_generator_util_1.randomStringGenerator)();
return `CONFIGURABLE_MODULE_OPTIONS[${hash}]`;
}