%PDF- %PDF-
Direktori : /home/jalalj2hb/www/ftm-admin/bower_components/jszip/documentation/api_zipobject/ |
Current File : /home/jalalj2hb/www/ftm-admin/bower_components/jszip/documentation/api_zipobject/internal_stream.md |
--- title: "internalStream(type)" layout: default section: api --- __Description__ : Return a [StreamHelper]({{site.baseurl}}/documentation/api_streamhelper.html) of the content in the asked type. __Arguments__ name | type | description ---------|----------|------------ type | String | the type of the result : `string`, `binarystring`, `uint8array`, `arraybuffer`, `nodebuffer`. __Returns__ : a [StreamHelper]({{site.baseurl}}/documentation/api_streamhelper.html) of the content in the asked type. __Throws__ : Nothing. __Example__ ```js zip .file("my_text.txt") .internalStream("string") .on("data", function (data) {...}) .on("error", function (e) {...}) .on("end", function () {...}); ```