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
13 changes: 7 additions & 6 deletions lib/node_modules/@stdlib/assert/is-big-endian/lib/main.js
Original file line number Diff line number Diff line change
Expand Up @@ -23,11 +23,6 @@
var ctors = require( './ctors.js' );


// VARIABLES //

var bool;


// FUNCTIONS //

/**
Expand Down Expand Up @@ -63,7 +58,13 @@ function isBigEndian() {

// MAIN //

bool = isBigEndian();
/**
* Boolean indicating if an environment is big endian.
*
* @constant
* @type {boolean}
*/
var bool = isBigEndian(); // eslint-disable-line vars-on-top


// EXPORTS //
Expand Down
13 changes: 7 additions & 6 deletions lib/node_modules/@stdlib/assert/is-little-endian/lib/main.js
Original file line number Diff line number Diff line change
Expand Up @@ -23,11 +23,6 @@
var ctors = require( './ctors.js' );


// VARIABLES //

var bool;


// FUNCTIONS //

/**
Expand Down Expand Up @@ -63,7 +58,13 @@ function isLittleEndian() {

// MAIN //

bool = isLittleEndian();
/**
* Boolean indicating if an environment is little endian.
*
* @constant
* @type {boolean}
*/
var bool = isLittleEndian(); // eslint-disable-line vars-on-top


// EXPORTS //
Expand Down