[jsinterp] Workaround operator associativity issue

https://github.com/yt-dlp/yt-dlp/issues/4635#issuecomment-1235384480
This commit is contained in:
pukkandan 2022-09-02 20:41:39 +05:30
parent 3c7a276234
commit 1a7c9fad9f
No known key found for this signature in database
GPG key ID: 7EEE9E1E817D0A39
2 changed files with 5 additions and 1 deletions

View file

@ -117,8 +117,8 @@ _OPERATORS = { # None => Defined in JSInterpreter._operator
'-': _js_arith_op(operator.sub),
'*': _js_arith_op(operator.mul),
'/': _js_div,
'%': _js_mod,
'/': _js_div,
'**': _js_exp,
}