node/test/fixtures/print-chars-from-buffer.js
Oleg Efimov 093dfaf801 GJSLint all tests, only 3 long lines left in test-url.js
test/simple/test-url.js:31:(0110) Line too long (82 characters).
test/simple/test-url.js:39:(0110) Line too long (85 characters).
test/simple/test-url.js:40:(0110) Line too long (92 characters).
2010-12-05 15:42:41 -08:00

11 lines
199 B
JavaScript

var common = require('../common');
var assert = require('assert');
var n = parseInt(process.argv[2]);
var b = new Buffer(n);
for (var i = 0; i < n; i++) {
b[i] = 100;
}
process.stdout.write(b);