(key)
| 391 | if (has("json-stringify") && !has("date-serialization")) { |
| 392 | // Internal: the `Date#toJSON` implementation used to override the native one. |
| 393 | function dateToJSON (key) { |
| 394 | return serializeDate(this); |
| 395 | } |
| 396 | |
| 397 | // Public: `JSON.stringify`. See ES 5.1 section 15.12.3. |
| 398 | var nativeStringify = exports.stringify; |
nothing calls this directly
no test coverage detected