| 123456789101112131415161718192021222324 | <!DOCTYPE html><html lang="en"><head>	<meta charset="UTF-8">	<meta name="viewport" content="width=device-width, initial-scale=1.0">	<meta http-equiv="X-UA-Compatible" content="ie=edge">	<title>Lofig | Example</title></head><body>	<h3>		Secret:		<span id="secret"></span>	</h3>	<script src="../dist/lofig.min.js"></script>	<script>		lofig.folder = "./config/default.json";		(async () => {			document.getElementById("secret").textContent = await lofig.get('secret');			document.getElementById("secret").style.color = "tomato";		})();	</script></body></html>
 |