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 1616* limitations under the License.
1717*/
1818
19+ /* eslint-disable stdlib/jsdoc-example-require-spacing */
20+
1921'use strict' ;
2022
2123// MODULES //
@@ -77,8 +79,8 @@ var runner = require( './runner.js' );
7779* ''
7880* ];
7981*
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! '
8284*
8385* function done( error ) {
8486* if ( error ) {
Original file line number Diff line number Diff line change 1616* limitations under the License.
1717*/
1818
19- /* eslint-disable object-curly-newline, object-property-newline */
20-
2119'use strict' ;
2220
2321var Complex64 = require ( '@stdlib/complex/float32/ctor' ) ;
@@ -30,7 +28,11 @@ console.log( isComplexLike( new Complex64( 2.0, 2.0 ) ) );
3028console . log ( isComplexLike ( new Complex128 ( 3.0 , 1.0 ) ) ) ;
3129// => true
3230
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 ) ) ;
3436// => true
3537
3638console . log ( isComplexLike ( { } ) ) ;
Original file line number Diff line number Diff line change @@ -31,7 +31,7 @@ var debug;
3131localStorage . debug = ENV . DEBUG ;
3232
3333// 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
3535
3636
3737// EXPORTS //
You can’t perform that action at this time.
0 commit comments