readeof 1.0.0 → 1.0.1

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/dist/index.js CHANGED
@@ -73,7 +73,6 @@ async function readeof(filePath, maxLines, encoding = "utf8", bufferSize = 16 *
73
73
  } catch (error) {
74
74
  throw error;
75
75
  } finally {
76
- console.log("Closing file handle");
77
76
  if (fileHandle) {
78
77
  await fileHandle.close();
79
78
  }
package/dist/index.mjs CHANGED
@@ -40,7 +40,6 @@ async function readeof(filePath, maxLines, encoding = "utf8", bufferSize = 16 *
40
40
  } catch (error) {
41
41
  throw error;
42
42
  } finally {
43
- console.log("Closing file handle");
44
43
  if (fileHandle) {
45
44
  await fileHandle.close();
46
45
  }
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "readeof",
3
3
  "description": "A high-performance, memory-efficient library to read large files backward (line-by-line). Optimized for Node.js and Bun log parsing.",
4
- "version": "1.0.0",
4
+ "version": "1.0.1",
5
5
  "type": "module",
6
6
  "main": "./dist/index.js",
7
7
  "module": "./dist/index.mjs",