(node)
| 27001 | return copyCustomPrologue(source, target, offset, visitor); |
| 27002 | } |
| 27003 | function isUseStrictPrologue(node) { |
| 27004 | return ts.isStringLiteral(node.expression) && node.expression.text === "use strict"; |
| 27005 | } |
| 27006 | function createUseStrictPrologue() { |
| 27007 | return ts.startOnNewLine(createExpressionStatement(createStringLiteral("use strict"))); |
| 27008 | } |
no outgoing calls
no test coverage detected