Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,8 @@
* limitations under the License.
*/

/* eslint-disable stdlib/jsdoc-example-require-spacing */

'use strict';

// MODULES //
Expand Down Expand Up @@ -77,8 +79,8 @@ var runner = require( './runner.js' );
* ''
* ];
*
* remark().use( run ).process( str.join( '\n' ), done );
* // => 'HELLO WORLD'
* remark().use( attacher ).process( str.join( '\n' ), done );
* // e.g., => 'HELLO WORLD!'
*
* function done( error ) {
* if ( error ) {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,6 @@
* limitations under the License.
*/

/* eslint-disable object-curly-newline, object-property-newline */

'use strict';

var Complex64 = require( '@stdlib/complex/float32/ctor' );
Expand All @@ -30,7 +28,11 @@ console.log( isComplexLike( new Complex64( 2.0, 2.0 ) ) );
console.log( isComplexLike( new Complex128( 3.0, 1.0 ) ) );
// => true

console.log( isComplexLike( { 're': 1.0, 'im': -1.0 } ) );
var obj = {
're': 1.0,
'im': -1.0
};
console.log( isComplexLike( obj ) );
// => true

console.log( isComplexLike( {} ) );
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ var debug;
localStorage.debug = ENV.DEBUG;

// Load `debug`:
debug = require( 'debug/browser' ); // eslint-disable-line stdlib/require-order
debug = require( 'debug/browser' ); // eslint-disable-line stdlib/require-order, stdlib/require-file-extensions


// EXPORTS //
Expand Down
Loading