diff options
author | David Sherret <dsherret@users.noreply.github.com> | 2023-04-01 10:12:40 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-04-01 10:12:40 -0400 |
commit | ae1ba2af3c0dc45de074285f0e0a8440cf2895ec (patch) | |
tree | fb298bdb5be9da8ed1c6af18c45c470994a0f3c6 /cli/tsc/99_main_compiler.js | |
parent | 23b9be7b37c40f8c29f9ce50439ad0e25b85282c (diff) |
perf(check): faster source hashing (#18534)
Diffstat (limited to 'cli/tsc/99_main_compiler.js')
-rw-r--r-- | cli/tsc/99_main_compiler.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cli/tsc/99_main_compiler.js b/cli/tsc/99_main_compiler.js index 2f565770c..56ac5522b 100644 --- a/cli/tsc/99_main_compiler.js +++ b/cli/tsc/99_main_compiler.js @@ -625,7 +625,7 @@ delete Object.prototype.__proto__; } }, createHash(data) { - return ops.op_create_hash({ data }).hash; + return ops.op_create_hash(data); }, // LanguageServiceHost |