|
@@ -201,12 +201,18 @@ func (s Map) Map(key string, defaultVal Map) (res Map) {
|
|
|
return
|
|
|
}
|
|
|
|
|
|
-// JSON Return JSON source of the self object
|
|
|
+// JSON returns JSON source of the self object
|
|
|
func (s Map) JSON() (res []byte) {
|
|
|
res, _ = json.Marshal(s)
|
|
|
return
|
|
|
}
|
|
|
|
|
|
+// JSONIndent returns JSON source of the self object with indent
|
|
|
+func (s Map) JSONIndent(prefix, indent string) (res []byte) {
|
|
|
+ res, _ = json.MarshalIndent(s, prefix, indent)
|
|
|
+ return
|
|
|
+}
|
|
|
+
|
|
|
// ToMap returns map[string]interface{} of the self object
|
|
|
func (s Map) ToMap() map[string]interface{} { return map[string]interface{}(s) }
|
|
|
|