Lines Matching refs:start
62 console.log(' (debug: start ', file.start);
72 console.log(' (debug: start ', file.start);
101 const options = { start: 10,
104 console.log(' (debug: start ', file.start);
114 console.log(' (debug: start ', file.start);
142 const options = { start: 10,
145 console.log(' (debug: start ', file.start);
155 console.log(' (debug: start ', file.start);
181 // Error: start must be >= zero
183 fs.createWriteStream(filepath, { start: -5, flags: 'r+' });
189 message: 'The value of "start" is out of range. ' +
198 // Error: start must be <= 2 ** 53 - 1
200 fs.createWriteStream(filepath, { start: 2 ** 53, flags: 'r+' });
206 message: 'The value of "start" is out of range. It must be ' +