(str)
| 92 | * @returns {string} string |
| 93 | */ |
| 94 | const toSimpleString = (str) => { |
| 95 | if (`${Number(str)}` === str) { |
| 96 | return str; |
| 97 | } |
| 98 | return JSON.stringify(str); |
| 99 | }; |
| 100 | |
| 101 | /** |
| 102 | * Compile boolean matcher. |
no outgoing calls
no test coverage detected