@geek-fun/serverlessinsight
Version:
Full life cycle cross providers serverless application management for your fast-growing business.
12 lines (11 loc) • 367 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.resolveTags = void 0;
const common_1 = require("../../common");
const resolveTags = (tags, context) => {
return tags?.reduce((acc, tag) => {
acc[tag.key] = (0, common_1.calcRefs)(tag.value, context);
return acc;
}, {});
};
exports.resolveTags = resolveTags;