File tree Expand file tree Collapse file tree 3 files changed +10
-6
lines changed
assert/is-complex-like/examples
plot/ctor/lib/view/electron/js Expand file tree Collapse file tree 3 files changed +10
-6
lines changed Original file line number Diff line number Diff line change 16
16
* limitations under the License.
17
17
*/
18
18
19
+ /* eslint-disable stdlib/jsdoc-example-require-spacing */
20
+
19
21
'use strict' ;
20
22
21
23
// MODULES //
@@ -77,8 +79,8 @@ var runner = require( './runner.js' );
77
79
* ''
78
80
* ];
79
81
*
80
- * remark().use( run ).process( str.join( '\n' ), done );
81
- * // => 'HELLO WORLD'
82
+ * remark().use( attacher ).process( str.join( '\n' ), done );
83
+ * // e.g., => 'HELLO WORLD! '
82
84
*
83
85
* function done( error ) {
84
86
* if ( error ) {
Original file line number Diff line number Diff line change 16
16
* limitations under the License.
17
17
*/
18
18
19
- /* eslint-disable object-curly-newline, object-property-newline */
20
-
21
19
'use strict' ;
22
20
23
21
var Complex64 = require ( '@stdlib/complex/float32/ctor' ) ;
@@ -30,7 +28,11 @@ console.log( isComplexLike( new Complex64( 2.0, 2.0 ) ) );
30
28
console . log ( isComplexLike ( new Complex128 ( 3.0 , 1.0 ) ) ) ;
31
29
// => true
32
30
33
- console . log ( isComplexLike ( { 're' : 1.0 , 'im' : - 1.0 } ) ) ;
31
+ var obj = {
32
+ 're' : 1.0 ,
33
+ 'im' : - 1.0
34
+ } ;
35
+ console . log ( isComplexLike ( obj ) ) ;
34
36
// => true
35
37
36
38
console . log ( isComplexLike ( { } ) ) ;
Original file line number Diff line number Diff line change @@ -31,7 +31,7 @@ var debug;
31
31
localStorage . debug = ENV . DEBUG ;
32
32
33
33
// Load `debug`:
34
- debug = require ( 'debug/browser' ) ; // eslint-disable-line stdlib/require-order
34
+ debug = require ( 'debug/browser' ) ; // eslint-disable-line stdlib/require-order, stdlib/require-file-extensions
35
35
36
36
37
37
// EXPORTS //
You can’t perform that action at this time.
0 commit comments