Skip to content

Files

Latest commit

a915443 · Oct 21, 2019

History

History
10 lines (10 loc) · 202 Bytes

json-handle.md

File metadata and controls

10 lines (10 loc) · 202 Bytes
Json字符串格式化
function jsonFormat (string) {
    if (string === "") {
        return ""
    }
    var result = JSON.parse(string)
    return JSON.stringify(result, null, 4)
}