excel-builder
Version:
An easy way of building Excel files with javascript
49 lines (35 loc) • 1.3 kB
Markdown
---
title: "forEach(callback)"
layout: default
section: api
---
__Description__ : Call a callback function for each entry at this folder level.
__Arguments__
name | type | description
----------|----------|------------
callback | function | the callback to use.
The callback has the following signature : `function (relativePath, file) {...}` :
name | type | description
-------------|-----------|------------
relativePath | string | the filename and its path, reliatively to the current folder.
file | ZipObject | the current file. See [ZipObject]({{site.baseurl}}/documentation/api_zipobject.html).
__Returns__ : Nothing.
__Throws__ : Nothing.
<!-- __Complexity__ : **O(k)** where k is the number of entries. -->
__Example__
```js
var zip = new JSZip();
zip.file("package.json", "...");
zip.file("lib/index.js", "...");
zip.file("test/index.html", "...");
zip.file("test/asserts/file.js", "...");
zip.file("test/asserts/generate.js", "...");
zip.folder("test").forEach(function (relativePath, file){
console.log("iterating over", relativePath);
});
// will display:
// iterating over index.html
// iterating over asserts/
// iterating over asserts/file.js
// iterating over asserts/generate.js
```