nlptoolkit-util
Advanced tools
Comparing version 1.0.8 to 1.0.9
@@ -6,2 +6,3 @@ export declare class FileContents { | ||
readLine(): string; | ||
hasNextLine(): boolean; | ||
} |
@@ -28,2 +28,5 @@ (function (factory) { | ||
}; | ||
FileContents.prototype.hasNextLine = function () { | ||
return this.filePointer < this.contents.length; | ||
}; | ||
return FileContents; | ||
@@ -30,0 +33,0 @@ }()); |
{ | ||
"name": "nlptoolkit-util", | ||
"version": "1.0.8", | ||
"version": "1.0.9", | ||
"description": "Simple Utils Library", | ||
@@ -5,0 +5,0 @@ "main": "index.js", |
@@ -22,2 +22,6 @@ import * as fs from "fs"; | ||
} | ||
hasNextLine(): boolean{ | ||
return this.filePointer < this.contents.length | ||
} | ||
} |
Sorry, the diff of this file is not supported yet
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
91087
1066