summaryrefslogtreecommitdiff
path: root/lib/readline.js
diff options
context:
space:
mode:
Diffstat (limited to 'lib/readline.js')
-rw-r--r--lib/readline.js13
1 files changed, 7 insertions, 6 deletions
diff --git a/lib/readline.js b/lib/readline.js
index c29aabb82b..57c2d6aff3 100644
--- a/lib/readline.js
+++ b/lib/readline.js
@@ -28,6 +28,7 @@
'use strict';
const {
+ DateNow,
MathCeil,
MathFloor,
MathMax,
@@ -442,7 +443,7 @@ Interface.prototype._normalWrite = function(b) {
}
let string = this._decoder.write(b);
if (this._sawReturnAt &&
- Date.now() - this._sawReturnAt <= this.crlfDelay) {
+ DateNow() - this._sawReturnAt <= this.crlfDelay) {
string = string.replace(/^\n/, '');
this._sawReturnAt = 0;
}
@@ -455,7 +456,7 @@ Interface.prototype._normalWrite = function(b) {
this._line_buffer = null;
}
if (newPartContainsEnding) {
- this._sawReturnAt = string.endsWith('\r') ? Date.now() : 0;
+ this._sawReturnAt = string.endsWith('\r') ? DateNow() : 0;
// Got one or more newlines; process into "line" events
const lines = string.split(lineEnding);
@@ -838,14 +839,14 @@ function _ttyWriteDumb(s, key) {
switch (key.name) {
case 'return': // Carriage return, i.e. \r
- this._sawReturnAt = Date.now();
+ this._sawReturnAt = DateNow();
this._line();
break;
case 'enter':
// When key interval > crlfDelay
if (this._sawReturnAt === 0 ||
- Date.now() - this._sawReturnAt > this.crlfDelay) {
+ DateNow() - this._sawReturnAt > this.crlfDelay) {
this._line();
}
this._sawReturnAt = 0;
@@ -1019,14 +1020,14 @@ Interface.prototype._ttyWrite = function(s, key) {
switch (key.name) {
case 'return': // Carriage return, i.e. \r
- this._sawReturnAt = Date.now();
+ this._sawReturnAt = DateNow();
this._line();
break;
case 'enter':
// When key interval > crlfDelay
if (this._sawReturnAt === 0 ||
- Date.now() - this._sawReturnAt > this.crlfDelay) {
+ DateNow() - this._sawReturnAt > this.crlfDelay) {
this._line();
}
this._sawReturnAt = 0;