Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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
- Host: GitHub
- URL: https://github.com/cute-angelia/json-stringify-func
- Owner: cute-angelia
- Created: 2020-08-06T07:18:25.000Z (over 4 years ago)
- Default Branch: master
- Last Pushed: 2020-08-06T07:24:14.000Z (over 4 years ago)
- Last Synced: 2024-12-15T02:26:36.744Z (25 days ago)
- Language: JavaScript
- Size: 1000 Bytes
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: readme.md
Awesome Lists containing this project
README
## JSON-STRINGIFY-FUNC
正常情况下是:
```
const data1 = {
a: 'aaa',
fn: function() {
return true
}
}
JSON.stringify(data)// 结果是 "{"a":"aaa"}"
```
使用本 js 是支持 function