Files
agent-claw/cdk/node_modules/aws-cdk-lib/pipelines/lib/private/cached-fnsub.js
2026-05-06 18:55:16 -05:00

2 lines
369 B
JavaScript

"use strict";Object.defineProperty(exports,"__esModule",{value:!0}),exports.CachedFnSub=void 0;var core_1=()=>{var tmp=require("../../../core");return core_1=()=>tmp,tmp};class CachedFnSub{cache=new Map;fnSub(x){const existing=this.cache.get(x);if(existing)return existing;const ret=core_1().Fn.sub(x);return this.cache.set(x,ret),ret}}exports.CachedFnSub=CachedFnSub;