diff options
author | David Thompson <dthompson2@worcester.edu> | 2014-10-15 20:37:35 -0400 |
---|---|---|
committer | David Thompson <dthompson2@worcester.edu> | 2014-10-15 20:37:35 -0400 |
commit | 02251331ae3c67a31624ed84460444914b688a3e (patch) | |
tree | d9aa4b9c5f0eb0812f41a0ceeb9af0a6663cbb00 | |
parent | f2b50d931ebd61dae469a03d572187aede5e06c7 (diff) |
js: utils file initializes guix namespace with certainty.
* js/utils.js (guix): Don't check for existing value (there isn't one).
-rw-r--r-- | js/utils.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/js/utils.js b/js/utils.js index 6ca5663..b3e4768 100644 --- a/js/utils.js +++ b/js/utils.js @@ -15,7 +15,7 @@ // License along with this program. If not, see // <http://www.gnu.org/licenses/>. -var guix = guix || {}; +var guix = {}; guix.chunk = function(array, size) { return array.reduce(function(memo, value, i) { |