server/php/basic/public_html/static/lib/FileSaver/README.md
changeset 566 2edeaffd3866
parent 561 5feabdc61980
child 598 eb4f4eceada0
equal deleted inserted replaced
565:49bc7df521df 566:2edeaffd3866
    51 
    51 
    52 Syntax
    52 Syntax
    53 ------
    53 ------
    54 
    54 
    55 ```js
    55 ```js
    56 FileSaver saveAs(in Blob data, in DOMString filename)
    56 FileSaver saveAs(Blob data, DOMString filename, optional Boolean disableAutoBOM)
    57 ```
    57 ```
       
    58 
       
    59 Pass `true` for `disableAutoBOM` if you don't want FileSaver.js to automatically provide Unicode text encoding hints (see: [byte order mark](https://en.wikipedia.org/wiki/Byte_order_mark)).
    58 
    60 
    59 Examples
    61 Examples
    60 --------
    62 --------
    61 
    63 
    62 ### Saving text
    64 ### Saving text