File tree 1 file changed +10
-8
lines changed
1 file changed +10
-8
lines changed Original file line number Diff line number Diff line change @@ -47,7 +47,15 @@ function Runnable(title, fn) {
47
47
/**
48
48
* Inherit from `EventEmitter.prototype`.
49
49
*/
50
- utils . inherits ( Runnable , EventEmitter ) ; /**
50
+ utils . inherits ( Runnable , EventEmitter ) ;
51
+
52
+ /**
53
+ * Get current timeout value in msecs.
54
+ *
55
+ * @private
56
+ * @returns {number } current timeout threshold value
57
+ */
58
+ /**
51
59
* @summary
52
60
* Set timeout threshold value (msecs).
53
61
*
@@ -60,13 +68,7 @@ utils.inherits(Runnable, EventEmitter); /**
60
68
* @returns {Runnable } this
61
69
* @chainable
62
70
*/
63
-
64
- /**
65
- * Get current timeout value in msecs.
66
- *
67
- * @private
68
- * @returns {number } current timeout threshold value
69
- */ Runnable . prototype . timeout = function ( ms ) {
71
+ Runnable . prototype . timeout = function ( ms ) {
70
72
if ( ! arguments . length ) {
71
73
return this . _timeout ;
72
74
}
You can’t perform that action at this time.
0 commit comments