diff options
author | Holden Rohrer <holden.rohrer@gmail.com> | 2019-12-28 13:26:01 -0500 |
---|---|---|
committer | Holden Rohrer <holden.rohrer@gmail.com> | 2019-12-28 13:26:01 -0500 |
commit | 53aa7c67f4968e23db32e75b76c30fd3731102a5 (patch) | |
tree | c9bb78d999bfb2959984002adcb930ff01fefcee | |
parent | 7c78934d3ca598b3d84e88d9e26ed46f7f16171d (diff) |
minor simplifying edit
-rw-r--r-- | space.js | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -43,7 +43,7 @@ function Space(){ if (conform && incl.includes(line)){ for (let i=0; i<16; i++) this.data[curline].push(' '); } else { - Array.prototype.push.apply(this.data[curline],cont[read].split('')); + this.data[curline].push(...cont[read]); read++; } } |