node/test/fixtures/create-file.js
cjihrig dd9aefde69
test: use const for all require() calls
PR-URL: https://github.com/nodejs/node/pull/10550
Reviewed-By: Rich Trott <rtrott@gmail.com>
2017-01-30 12:08:31 -05:00

8 lines
193 B
JavaScript

const fs = require('fs');
var file_name = process.argv[2];
var file_size = parseInt(process.argv[3]);
var fd = fs.openSync(file_name, 'w');
fs.ftruncateSync(fd, file_size);
fs.closeSync(fd);