equal
deleted
inserted
replaced
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 |