UNPKG

@oracle/suitecloud-unit-testing

Version:

<p align="left"><a href="#"><img width="250" src="resources/netsuite_logo_simplified.png"></a></p>

27 lines (23 loc) 528 B
define([], function () { /** * * @param {JavaLikeIterator} delegate * @constructor * @protected */ function Iterator() { /** * ECMA 2015 style * * @return {{done: boolean, value: *}} */ this.next = function () { }; /** * SuiteScript style * * @param {iteratorFunction} iteratorFunction */ this.each = function (options) { }; } return new Iterator(); });