| Total Complexity | 2 |
| Complexity/F | 1 |
| Lines of Code | 9 |
| Function Count | 2 |
| Duplicated Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
| 1 | export function defaultParser(data) { |
||
| 2 | return data; |
||
| 3 | } |
||
| 4 | |||
| 5 | export function defaultParserJSON(data) { |
||
| 6 | return JSON.parse(data); |
||
| 7 | } |
||
| 8 | |||
| 9 | export const defaultMaxListeners = 30; |
||
| 10 |