Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/cute-angelia/json-stringify-func

js JSON.stringify with function
https://github.com/cute-angelia/json-stringify-func

Last synced: 6 days ago
JSON representation

js JSON.stringify with function

Awesome Lists containing this project

README

        

## JSON-STRINGIFY-FUNC

正常情况下是:

```
const data1 = {
a: 'aaa',
fn: function() {
return true
}
}
JSON.stringify(data)

// 结果是 "{"a":"aaa"}"

```

使用本 js 是支持 function