diff options
author | Divy Srivastava <dj.srivastava23@gmail.com> | 2022-04-04 15:07:26 +0530 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-04-04 15:07:26 +0530 |
commit | 797cf9cdd9fa864494cea4ba02edb7be185fe79a (patch) | |
tree | 18501a48c6394815e560bb6e2760369768307cd5 /ext/webstorage/01_webstorage.js | |
parent | 1f7dd5eda9b5e17ff102abb4dce1f19a4ce76688 (diff) |
chore(ext/webstorage): custom arity (#14201)
Diffstat (limited to 'ext/webstorage/01_webstorage.js')
-rw-r--r-- | ext/webstorage/01_webstorage.js | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/ext/webstorage/01_webstorage.js b/ext/webstorage/01_webstorage.js index 831f63f59..6640c04e5 100644 --- a/ext/webstorage/01_webstorage.js +++ b/ext/webstorage/01_webstorage.js @@ -55,10 +55,7 @@ context: "Argument 2", }); - core.opSync("op_webstorage_set", { - keyName: key, - keyValue: value, - }, this[_persistent]); + core.opSync("op_webstorage_set", key, value, this[_persistent]); } getItem(key) { |