puvox-library 1.0.36 → 1.0.38
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/library_standard.js +1 -1
- package/package.json +1 -1
package/library_standard.js
CHANGED
@@ -1131,7 +1131,7 @@ const puvox_library =
|
|
1131
1131
|
let linesAmount = 0;
|
1132
1132
|
readStream.on('data', async function(chunk) {
|
1133
1133
|
const ch = chunk + '';
|
1134
|
-
const curLenth = self.
|
1134
|
+
const curLenth = self.occurences_amount(ch, '\n');
|
1135
1135
|
linesAmount = linesAmount + curLenth;
|
1136
1136
|
});
|
1137
1137
|
readStream.on('end', async function() {
|