Skip to content

Commit abf4da5

Browse files
committed
chore: resolve flagged issues and update fixtures
1 parent 0a92907 commit abf4da5

File tree

9 files changed

+3
-9
lines changed

9 files changed

+3
-9
lines changed

lib/node_modules/@stdlib/_tools/eslint/rules/empty-line-before-comment/lib/main.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@ function main( context ) {
6464
* @returns {Object} fix
6565
*/
6666
function fix( fixer ) {
67-
var range =[
67+
var range = [
6868
source.getIndexFromLoc({
6969
'line': loc.start.line,
7070
'column': 0

lib/node_modules/@stdlib/error/to-json/test/test.ctors.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ var CTORS = require( './../lib/ctors.js' );
2727

2828
// TESTS //
2929

30-
tape( 'main export is a an array', function test( t ) {
30+
tape( 'main export is an array', function test( t ) {
3131
t.ok( true, __filename );
3232
t.strictEqual( isArray( CTORS ), true, 'main export is an array' );
3333
t.end();

lib/node_modules/@stdlib/math/base/tools/evalpoly-compile/test/fixtures/evalpoly1.js.txt

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,6 @@
1111
*
1212
* [horners-method]: https://en.wikipedia.org/wiki/Horner%27s_method
1313
*
14-
*
1514
* @private
1615
* @param {number} x - value at which to evaluate the polynomial
1716
* @returns {number} evaluated polynomial

lib/node_modules/@stdlib/math/base/tools/evalpoly-compile/test/fixtures/evalpoly2.js.txt

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,6 @@
1111
*
1212
* [horners-method]: https://en.wikipedia.org/wiki/Horner%27s_method
1313
*
14-
*
1514
* @private
1615
* @param {number} x - value at which to evaluate the polynomial
1716
* @returns {number} evaluated polynomial

lib/node_modules/@stdlib/math/base/tools/evalpoly-compile/test/fixtures/evalpoly3.js.txt

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,6 @@
1111
*
1212
* [horners-method]: https://en.wikipedia.org/wiki/Horner%27s_method
1313
*
14-
*
1514
* @private
1615
* @param {number} x - value at which to evaluate the polynomial
1716
* @returns {number} evaluated polynomial

lib/node_modules/@stdlib/math/base/tools/evalrational-compile/test/fixtures/evalrational1.js.txt

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,6 @@
1212
*
1313
* [horners-method]: https://en.wikipedia.org/wiki/Horner%27s_method
1414
*
15-
*
1615
* @private
1716
* @param {number} x - value at which to evaluate the rational function
1817
* @returns {number} evaluated rational function

lib/node_modules/@stdlib/math/base/tools/evalrational-compile/test/fixtures/evalrational2.js.txt

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,6 @@
1212
*
1313
* [horners-method]: https://en.wikipedia.org/wiki/Horner%27s_method
1414
*
15-
*
1615
* @private
1716
* @param {number} x - value at which to evaluate the rational function
1817
* @returns {number} evaluated rational function

lib/node_modules/@stdlib/math/base/tools/evalrational-compile/test/fixtures/evalrational3.js.txt

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,6 @@
1212
*
1313
* [horners-method]: https://en.wikipedia.org/wiki/Horner%27s_method
1414
*
15-
*
1615
* @private
1716
* @param {number} x - value at which to evaluate the rational function
1817
* @returns {number} evaluated rational function

lib/node_modules/@stdlib/object/assign/lib/polyfill.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ function assign( target ) {
6060
var i;
6161
var j;
6262
if ( target === void 0 || target === null ) {
63-
throw new TypeError( format( 'invalid argument. First argument must be a non-null object. Value: %s' ) );
63+
throw new TypeError( format( 'invalid argument. First argument must be a non-null object. Value: `%s`.', target ) );
6464
}
6565
to = Object( target );
6666
for ( i = 1; i < arguments.length; i++ ) {

0 commit comments

Comments
 (0)