(val: string)
| 30 | }; |
| 31 | |
| 32 | export const stripQuotes = (val: string): string => |
| 33 | typeof val === 'string' && (val[0] === "'" || val[0] === '"') && val[val.length - 1] === val[0] |
| 34 | ? val.substring(1, val.length - 1) |
| 35 | : val; |
| 36 | |
| 37 | /** |
| 38 | * Turn a mapping and the value of the mapping into a formatted json object |
no outgoing calls
no test coverage detected
searching dependent graphs…