This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // Thank you Stack Overflow: https://stackoverflow.com/a/54127122 | |
| var aestTime = new Date().toLocaleString("en-US", {timeZone: "Australia/Brisbane"}); | |
| console.log('AEST time: '+ (new Date(aestTime)).toISOString()) | |
| var asiaTime = new Date().toLocaleString("en-US", {timeZone: "Asia/Shanghai"}); | |
| console.log('Asia time: '+ (new Date(asiaTime)).toISOString()) | |
| var usaTime = new Date().toLocaleString("en-US", {timeZone: "America/New_York"}); | |
| console.log('USA time: '+ (new Date(usaTime)).toISOString()) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| module.exports = { | |
| config: { | |
| // default font size in pixels for all tabs | |
| fontSize: 12, | |
| // font family with optional fallbacks | |
| fontFamily: 'Menlo, "DejaVu Sans Mono", Consolas, "Lucida Console", monospace', | |
| // terminal cursor background color and opacity (hex, rgb, hsl, hsv, hwb or cmyk) | |
| cursorColor: 'rgba(248,28,229,0.8)', |