| OLD | NEW |
| 1 /* | 1 /* |
| 2 GIFEncoder.js | 2 GIFEncoder.js |
| 3 | 3 |
| 4 Authors | 4 Authors |
| 5 Kevin Weiner (original Java version - kweiner@fmsware.com) | 5 Kevin Weiner (original Java version - kweiner@fmsware.com) |
| 6 Thibault Imbert (AS3 version - bytearray.org) | 6 Thibault Imbert (AS3 version - bytearray.org) |
| 7 Johan Nordberg (JS version - code@johan-nordberg.com) | 7 Johan Nordberg (JS version - code@johan-nordberg.com) |
| 8 */ | 8 */ |
| 9 | 9 |
| 10 var NeuQuant = require('./TypedNeuQuant.js'); | 10 var NeuQuant = require('./TypedNeuQuant.js'); |
| (...skipping 383 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 394 }; | 394 }; |
| 395 | 395 |
| 396 /* | 396 /* |
| 397 Retrieves the GIF stream | 397 Retrieves the GIF stream |
| 398 */ | 398 */ |
| 399 GIFEncoder.prototype.stream = function() { | 399 GIFEncoder.prototype.stream = function() { |
| 400 return this.out; | 400 return this.out; |
| 401 }; | 401 }; |
| 402 | 402 |
| 403 module.exports = GIFEncoder; | 403 module.exports = GIFEncoder; |
| OLD | NEW |