mirror of
https://github.com/microsoft/TypeScript.git
synced 2026-02-15 20:25:23 -06:00
Ensure that the entire contents of the prologue are simply 'use strict'.
This commit is contained in:
parent
1317d23a8a
commit
2abc736955
@ -1204,7 +1204,7 @@ namespace ts {
|
||||
// Utilities
|
||||
|
||||
function isUseStrictPrologue(node: ExpressionStatement): boolean {
|
||||
return !!(node.expression as StringLiteral).text.match(/use strict/);
|
||||
return (node.expression as StringLiteral).text === "use strict";
|
||||
}
|
||||
|
||||
export function addPrologueDirectives(target: Statement[], source: Statement[], ensureUseStrict?: boolean): number {
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user