index.js
346 Bytes
import dotenv from 'dotenv'
dotenv.config();
export class Utils {
/**
* @function
* @description Testasdfasdfasdf
* @param {String} str
* @returns {String}
*/
static printf(str){
return `=======>${str}<=======` + JSON.stringify( process.env );
}
}
export const ENV = {
env : process.env
}