From 4ab0af5febac026c1bc5e6e98f01386c2a80d94a Mon Sep 17 00:00:00 2001 From: pyoor Date: Tue, 19 Sep 2017 13:14:37 -0400 Subject: [PATCH] Expand assignment operators --- lib/make/text.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/make/text.js b/lib/make/text.js index f243322..3acf2c7 100644 --- a/lib/make/text.js +++ b/lib/make/text.js @@ -174,7 +174,7 @@ make.text = { }, assignmentOperator: function () { return random.pick([ - '=', '-=', '+=', '*=', '/=' + '=', '+=', '-=', '*=', '/=', '%=', '**=', '<<=', '>>=', '>>>=', '&=', '^=', '|=' ]) }, arithmeticOperator: function () {