@oracle/suitecloud-unit-testing
Version:
<p align="left"><a href="#"><img width="250" src="resources/netsuite_logo_simplified.png"></a></p>
42 lines (38 loc) • 1.1 kB
JavaScript
define([], function () {
/**
* @class FileLines
* @classdesc Object for iterating over file lines
* @protected
* @constructor
*/
function FileLines() {
/**
* Returns true if there are still any line which can be read from the file
* @restriction Server SuiteScript only
* @governance none
* @return {boolean}
*
* @since 2017.1
*/
this.hasNext = function () { };
/**
* Returns the current line and moves the iterator to the next line
* @restriction Server SuiteScript only
* @governance none
* @return {string}
*
* @since 2017.1
*/
this.next = function () { };
/**
* Sets the current line to the first line of the file
* @restriction Server SuiteScript only
* @governance none
* @return {void}
*
* @since 2017.1
*/
this.reset = function () { };
}
return new FileLines();
});