| FazBrowse GitHub Viewer | Trending | | Home |
| Tools: [Download Repo ZIP] [Original HTTPS Page] |
1 parent e069dc4 commit 2f458ea
1 file changed
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
@@ -0,0 +1,15 @@ | |||
| 1 | + 'use strict'; | ||
| 2 | + | ||
| 3 | + require('../common'); | ||
| 4 | + const assert = require('assert'); | ||
| 5 | + const zlib = require('zlib'); | ||
| 6 | + | ||
| 7 | + { | ||
| 8 | + const inflateRaw = zlib.createInflateRaw(); | ||
| 9 | + assert(inflateRaw instanceof zlib.InflateRaw); | ||
| 10 | + } | ||
| 11 | + | ||
| 12 | + { | ||
| 13 | + const deflateRaw = zlib.createDeflateRaw(); | ||
| 14 | + assert(deflateRaw instanceof zlib.DeflateRaw); | ||
| 15 | + } | ||
| Back | FazBrowse Home | New Git URL |
0 commit comments