diff options
author | Linus Groh <mail@linusgroh.de> | 2021-08-28 12:05:58 +0100 |
---|---|---|
committer | Linus Groh <mail@linusgroh.de> | 2021-08-28 13:33:04 +0100 |
commit | 21dafc11d599c8f6a2936f92ab5b74ee0b38af76 (patch) | |
tree | dcec7daef8f199702c36ca36186ded02bf6d6793 /Base/res | |
parent | 527efc1d52230bfec0f5b0bdf7a16ba223de3e2f (diff) | |
download | serenity-21dafc11d599c8f6a2936f92ab5b74ee0b38af76.zip |
Spreadsheet: Use strict mode for runtime.js
Diffstat (limited to 'Base/res')
-rw-r--r-- | Base/res/js/Spreadsheet/runtime.js | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/Base/res/js/Spreadsheet/runtime.js b/Base/res/js/Spreadsheet/runtime.js index 339675109b..06d636facb 100644 --- a/Base/res/js/Spreadsheet/runtime.js +++ b/Base/res/js/Spreadsheet/runtime.js @@ -1,3 +1,5 @@ +"use strict"; + // FIXME: Figure out a way to document non-function entities too. class Position { constructor(column, row, sheet) { |