Remove unused parameter in `_loadString`

The usage of this method was removed in commit 51edf3cece, but the parameter remained.
This commit is contained in:
Kyle Sletten 2017-12-20 11:39:57 -07:00 committed by GitHub
parent 74779f334a
commit a7f3efb7eb
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -11,7 +11,7 @@ require('./polyfills/fromcodepoint');
// Vacuum all input from a string and then treat it like a buffer.
function _loadString(stream, decodeToUnicodeCodePoints) {
function _loadString(stream) {
stream._index = 0;
stream.data = [];
if (stream.decodeToUnicodeCodePoints) {