You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: lib/node_modules/@stdlib/array/to-strided-iterator/README.md
+3-3
Original file line number
Diff line number
Diff line change
@@ -20,7 +20,7 @@ limitations under the License.
20
20
21
21
# Strided Iterator
22
22
23
-
> Create an [iterator][mdn-iterator-protocol] from a strided array-like value.
23
+
> Create an [iterator][mdn-iterator-protocol] from a strided array-like object.
24
24
25
25
<!-- Section to include introductory text. Make sure to keep an empty line after the intro `section` element and another before the `/section` close. -->
26
26
@@ -42,7 +42,7 @@ var stridedarray2iterator = require( '@stdlib/array/to-strided-iterator' );
42
42
43
43
#### stridedarray2iterator( N, src, stride, offset\[, mapFcn\[, thisArg]] )
44
44
45
-
Returns an [iterator][mdn-iterator-protocol] which iterates over elements in an array-like value according to specified stride parameters.
45
+
Returns an [iterator][mdn-iterator-protocol] which iterates over elements in an array-like `object` according to specified stride parameters.
46
46
47
47
```javascript
48
48
var values = [ 1, 2, 3, 4, 5, 6, 7, 8 ];
@@ -98,7 +98,7 @@ The invoked function is provided four arguments:
tape('the function returns an iterator protocol-compliant object (array-like object)',functiontest(t){
387
342
varexpected;
388
343
varactual;
@@ -476,43 +431,6 @@ tape( 'the function returns an iterator protocol-compliant object which supports
476
431
}
477
432
});
478
433
479
-
tape('the function returns an iterator protocol-compliant object which supports invoking a provided function for each iterated value (string)',functiontest(t){
tape('the function returns an iterator protocol-compliant object which supports invoking a provided function for each iterated value (array-like)',functiontest(t){
0 commit comments