Skip to content

Commit

Permalink
Merge pull request #3 from LOKE/feature/refactor-cachekey
Browse files Browse the repository at this point in the history
refactor cachekey()
  • Loading branch information
althoff0 authored Aug 21, 2024
2 parents 800ed18 + e763d69 commit aabb4ea
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -299,7 +299,7 @@ export function create(options: RedisCacheOptions): RedisCache {
* key.getMetaString(prefix) === "foo:user:{0}:session:{1}";
*/
export function cacheKey(
strings: TemplateStringsArray,
strings: readonly string[],
...values: string[]
): CacheKey {
return {
Expand Down

0 comments on commit aabb4ea

Please sign in to comment.