Function toStr

  • 任意值转换为字符串

    Parameters

    • value: any

    Returns string

    toStr({}); /// '{}'
    toStr([1, 2]); /// '[1,2]'
    toStr(null); /// ''