mirror of
https://github.com/TeaOSLab/EdgeAdmin.git
synced 2025-11-04 05:00:25 +08:00
10 lines
187 B
JavaScript
10 lines
187 B
JavaScript
Tea.context(function () {
|
|
// 打印缩进
|
|
this.indent = function (index) {
|
|
let indent = ""
|
|
for (let i = 0; i < index; i++) {
|
|
indent += " "
|
|
}
|
|
return indent
|
|
}
|
|
}) |