| FazBrowse GitHub Viewer | Trending | | Home |
| Tools: [Download Repo ZIP] [Original HTTPS Page] |
1 parent 4fce855 commit ec7df6c
1 file changed
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
@@ -0,0 +1,9 @@ | |||
| 1 | + 'use strict'; | ||
| 2 | + require('../common'); | ||
| 3 | + const assert = require('assert'); | ||
| 4 | + | ||
| 5 | + process.stdin.setRawMode(true); | ||
| 6 | + assert.strictEqual(process.stdin.isRaw, true); | ||
| 7 | + | ||
| 8 | + process.stdin.setRawMode(false); | ||
| 9 | + assert.strictEqual(process.stdin.isRaw, false); | ||
| Back | FazBrowse Home | New Git URL |
0 commit comments