Skip to content
Open
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 @@ -40,6 +40,26 @@ var rule;

// FUNCTIONS //

/**
* Copies AST node location info.
*
* @private
* @param {Object} loc - AST node location
* @returns {Object} copied location info
*/
function copyLocationInfo( loc ) {
return {
'start': {
'line': loc.start.line,
'column': loc.start.column
},
'end': {
'line': loc.end.line,
'column': loc.end.column
}
};
}

/**
* Rule to prevent Markdown headings in JSDoc descriptions from ending with specified characters.
*
Expand Down Expand Up @@ -115,26 +135,6 @@ function main( context ) {
}
}

/**
* Copies AST node location info.
*
* @private
* @param {Object} loc - AST node location
* @returns {Object} copied location info
*/
function copyLocationInfo( loc ) {
return {
'start': {
'line': loc.start.line,
'column': loc.start.column
},
'end': {
'line': loc.end.line,
'column': loc.end.column
}
};
}

/**
* Reports an error message.
*
Expand Down
4 changes: 2 additions & 2 deletions lib/node_modules/@stdlib/console/log/examples/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -30,5 +30,5 @@ log( '%i', 2 );
log( '%.2i', 2.2 );
log( '%f', 3.14 );
log( '%.2f', 4.13 );
log( '%o', { 'foo': 'bar' } );
log( '%O', [ 1, 2, 3, 4 ] );
log( '%o', { 'foo': 'bar' });
log( '%O', [ 1, 2, 3, 4 ]);