UNPKG

413 BJavaScriptView Raw
1"use strict";
2Object.defineProperty(exports, "__esModule", { value: true });
3exports.fromStatic = void 0;
4const property_provider_1 = require("@aws-sdk/property-provider");
5const isFunction = (func) => typeof func === "function";
6const fromStatic = (defaultValue) => isFunction(defaultValue) ? async () => await defaultValue() : (0, property_provider_1.fromStatic)(defaultValue);
7exports.fromStatic = fromStatic;