diff options
author | toasted-nutbread <toasted-nutbread@users.noreply.github.com> | 2020-04-11 15:23:32 -0400 |
---|---|---|
committer | toasted-nutbread <toasted-nutbread@users.noreply.github.com> | 2020-04-11 15:25:21 -0400 |
commit | cdd817a0e1c573b24114836a389236f49dd9b279 (patch) | |
tree | c9a579085d288afe81455a5e4f09d8da279a43a1 /ext/bg/js/util.js | |
parent | 51e17b35e3a855c0db6c4be94a8cb416b14c8ad7 (diff) |
Move and rename utilStringHashCode
options.js is the only place it's used.
Diffstat (limited to 'ext/bg/js/util.js')
-rw-r--r-- | ext/bg/js/util.js | 13 |
1 files changed, 0 insertions, 13 deletions
diff --git a/ext/bg/js/util.js b/ext/bg/js/util.js index 106365ac..5edcc193 100644 --- a/ext/bg/js/util.js +++ b/ext/bg/js/util.js @@ -58,19 +58,6 @@ function utilBackgroundFunctionIsolate(func) { return backgroundPage.utilFunctionIsolate(func); } -function utilStringHashCode(string) { - let hashCode = 0; - - if (typeof string !== 'string') { return hashCode; } - - for (let i = 0, charCode = string.charCodeAt(i); i < string.length; charCode = string.charCodeAt(++i)) { - hashCode = ((hashCode << 5) - hashCode) + charCode; - hashCode |= 0; - } - - return hashCode; -} - function utilBackend() { const backend = chrome.extension.getBackgroundPage().yomichanBackend; if (!backend.isPrepared) { |