UNPKG

lambda-live-debugger

Version:

Debug Lambda functions locally like it is running in the cloud

9 lines (8 loc) 327 B
import { createHash } from "crypto"; import { join } from "path"; import { getHomeDir } from "./getHomeDir"; export const getSSOTokenFilepath = (id) => { const hasher = createHash("sha1"); const cacheName = hasher.update(id).digest("hex"); return join(getHomeDir(), ".aws", "sso", "cache", `${cacheName}.json`); };