(schema, options)
| 36 | } |
| 37 | |
| 38 | function getDefault(schema, options) { |
| 39 | let defaultVal = ''; |
| 40 | if (options && options.includeDefault && schema.default !== undefined) { |
| 41 | defaultVal = ' = ' + printSpecObject(schema.default); |
| 42 | } |
| 43 | return defaultVal; |
| 44 | } |
| 45 | |
| 46 | function getBaseName(tsFileName) { |
| 47 | if (tsFileName.endsWith('.ts')) { |
no test coverage detected