You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
Michaël Zasso 2d441493a4 tools: update eslint to v1.10.3 9 years ago
..
LICENSE tools: update eslint to v1.10.3 9 years ago
README.md tools: update eslint to v1.10.3 9 years ago
index.js tools: update eslint to v1.10.3 9 years ago
package.json tools: update eslint to v1.10.3 9 years ago

README.md

cli-width

Get stdout window width, with three fallbacks, tty, a custom environment variable and then a default.

Usage

npm install --save cli-width
'use stict';

var cliWidth = require('cli-width');

cliWidth(); // maybe 204 :)

You can also set the CLI_WIDTH environment variable.

If none of the methods are supported, the default is 0 and can be changed via cliWidth.defaultWidth = 200;.

Tests

npm install
npm test