Open
Description
Currently, the JavaScript code in this repository follows pretty old guidelines (in some aspects, a few-years-old one). The code doesn't conform to the current Google JavaScript Style Guide (https://google.github.io/styleguide/jsguide.html) in several aspects, most notably:
- Instead of modules, the
goog.require
+goog.provide
combination is used. - Instead of
const
/let
,var
is used. - Instead of JavaScript classes, functions with the
@constructor
annotations are used.