@sap/xssec
Version:
XS Advanced Container Security API for node.js
11 lines • 532 B
TypeScript
export = createCacheKey;
/**
* Creates a cache key string from the given object by concatenating its key-value pairs.
* Each pair is formatted as "key=value" and pairs are joined by a pipe ("|").
* Keys with null or undefined values are omitted from the resulting string.
*
* @param {Object} [parts={}] - The object containing key-value pairs to include in the cache key.
* @returns {string} The generated cache key string.
*/
declare function createCacheKey(parts?: any): string;
//# sourceMappingURL=createCacheKey.d.ts.map