Private
Delete all variables from the file
process.env.clear()
Delete variable from file
process.env.delete("token")
Type a key for the element
Delete and destroy the file
process.env.destroy()
Read variable from file
process.env.get("token")
Check if a variable exists in the file
process.env.has("token")
Read variables in the file
process.env.reloadVariables()()
set variable in the file
process.env.set("token","my_secret_token")
Type a value for the element
To write an object to the file
process.env.writeFile({token:"",prefix:"#"})
Optional
Generated using TypeDoc
Description
Delete all variables from the file
Example
Returns