1234567891011121314151617181920212223242526272829303132333435 |
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- var tape = require('tape');
- var zlib = require('../');
-
- tape(function(t) {
- t.plan(1);
-
- zlib.gzip('hello', function(err, out) {
- var unzip = zlib.createGunzip();
- unzip.write(out);
- unzip.close(function() {
- t.ok(true);
- });
- });
- });
|