Home > SYS_Environment > getEditorCompliedDate
SYS_Environment.getEditorCompliedDate() method
Get the editor compiled date
Signature
typescript
function getEditorCompliedDate(): string;1
Returns
string
Editor compiled date
Example
javascript
// 1. 读取编辑器编译日期(同步返回字符串)
const compliedDate = eda.sys_Environment.getEditorCompliedDate();
// 2. 输出编译日期(如 2024-06-01,具体以当前环境为准)
console.log('编辑器编译日期:', compliedDate);1
2
3
4
5
2
3
4
5