remove node_modules and .gitignore them
This commit is contained in:
-8
@@ -1,8 +0,0 @@
|
||||
import { promises as fsPromises } from "fs";
|
||||
import { getSSOTokenFilepath } from "./getSSOTokenFilepath";
|
||||
const { readFile } = fsPromises;
|
||||
export const getSSOTokenFromFile = async (id) => {
|
||||
const ssoTokenFilepath = getSSOTokenFilepath(id);
|
||||
const ssoTokenText = await readFile(ssoTokenFilepath, "utf8");
|
||||
return JSON.parse(ssoTokenText);
|
||||
};
|
||||
Reference in New Issue
Block a user