(idStr)
| 106 | * Check if this ID is a stringified object, and if so parse it to that object |
| 107 | */ |
| 108 | export function parseIfWildcard(idStr) { |
| 109 | return isWildcardId(idStr) ? parseWildcardId(idStr) : idStr; |
| 110 | } |
| 111 | |
| 112 | /* |
| 113 | * JSON.stringify - for the object form - but ensuring keys are sorted |
no test coverage detected
searching dependent graphs…