UNPKG

@aws/cloudfront-hosting-toolkit

Version:

CloudFront Hosting Toolkit offers the convenience of a managed frontend hosting service while retaining full control over the hosting and deployment infrastructure to make it your own.

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`); };