From 099ab2b4d3278374b22564b2485057e6cdca25ba Mon Sep 17 00:00:00 2001 From: stdlib-bot Date: Wed, 1 Nov 2023 02:55:01 +0000 Subject: [PATCH] Auto-generated commit --- .github/.keepalive | 1 + .github/workflows/publish.yml | 12 +- CONTRIBUTORS | 1 + package.json | 6 +- test/dist/test.js | 389 +--------------------------------- 5 files changed, 19 insertions(+), 390 deletions(-) create mode 100644 .github/.keepalive diff --git a/.github/.keepalive b/.github/.keepalive new file mode 100644 index 0000000..334b8d9 --- /dev/null +++ b/.github/.keepalive @@ -0,0 +1 @@ +2023-11-01T02:54:57.923Z diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml index b17435b..0037bdb 100644 --- a/.github/workflows/publish.yml +++ b/.github/workflows/publish.yml @@ -182,7 +182,11 @@ jobs: fi # Trim leading and trailing whitespace: dep=$(echo "$dep" | xargs) - version="^$(npm view $dep version)" + version="$(npm view $dep version)" + if [[ -z "$version" ]]; then + continue + fi + version="^$version" jq -r --arg dep "$dep" --arg version "$version" '.dependencies[$dep] = $version' package.json > package.json.tmp mv package.json.tmp package.json done @@ -192,7 +196,11 @@ jobs: fi # Trim leading and trailing whitespace: dep=$(echo "$dep" | xargs) - version="^$(npm view $dep version)" + version="$(npm view $dep version)" + if [[ -z "$version" ]]; then + continue + fi + version="^$version" jq -r --arg dep "$dep" --arg version "$version" '.devDependencies[$dep] = $version' package.json > package.json.tmp mv package.json.tmp package.json done diff --git a/CONTRIBUTORS b/CONTRIBUTORS index 93c4bde..0dae4fe 100644 --- a/CONTRIBUTORS +++ b/CONTRIBUTORS @@ -37,3 +37,4 @@ Stephannie Jiménez Gacha Yernar Yergaziyev orimiles5 <97595296+orimiles5@users.noreply.github.com> rei2hu +Robert Gislason diff --git a/package.json b/package.json index 32fd14a..c93c74e 100644 --- a/package.json +++ b/package.json @@ -43,14 +43,14 @@ "@stdlib/types": "^0.1.0" }, "devDependencies": { - "@stdlib/array-float32": "^0.1.0", - "@stdlib/array-float64": "^0.1.0", + "@stdlib/array-float32": "^0.1.1", + "@stdlib/array-float64": "^0.1.1", "@stdlib/assert-is-even": "^0.1.0", "@stdlib/assert-is-nan": "^0.1.1", "@stdlib/bench": "^0.1.0", "@stdlib/constants-float64-pinf": "^0.1.1", "@stdlib/math-base-assert-is-nan": "^0.1.1", - "@stdlib/math-base-special-floor": "^0.1.0", + "@stdlib/math-base-special-floor": "^0.1.1", "@stdlib/random-base-randu": "^0.1.0", "@stdlib/utils-noop": "^0.1.1", "tape": "git+https://github.com/kgryte/tape.git#fix/globby", diff --git a/test/dist/test.js b/test/dist/test.js index a27866e..a8a9c60 100644 --- a/test/dist/test.js +++ b/test/dist/test.js @@ -1,7 +1,7 @@ /** * @license Apache-2.0 * -* Copyright (c) 2018 The Stdlib Authors. +* Copyright (c) 2023 The Stdlib Authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -21,394 +21,13 @@ // MODULES // var tape = require( 'tape' ); -var noop = require( '@stdlib/utils-noop' ); -var isnan = require( '@stdlib/assert-is-nan' ).isPrimitive; -var Float32Array = require( '@stdlib/array-float32' ); -var Float64Array = require( '@stdlib/array-float64' ); -var doWhileEachRight = require( './../../dist' ); +var main = require( './../../dist' ); // TESTS // -tape( 'main export is a function', function test( t ) { +tape( 'main export is defined', function test( t ) { t.ok( true, __filename ); - t.strictEqual( typeof doWhileEachRight, 'function', 'main export is a function' ); - t.end(); -}); - -tape( 'the function throws an error if not provided a collection', function test( t ) { - var values; - var i; - - values = [ - '5', - 5, - NaN, - true, - false, - null, - void 0, - {}, - function noop() {}, - /.*/, - new Date() - ]; - - for ( i = 0; i < values.length; i++ ) { - t.throws( badValue( values[i] ), TypeError, 'throws a type error when provided '+values[i] ); - } - t.end(); - - function badValue( value ) { - return function badValue() { - doWhileEachRight( value, noop, noop ); - }; - } -}); - -tape( 'the function throws an error if not provided a function to invoke', function test( t ) { - var values; - var i; - - values = [ - '5', - 5, - NaN, - true, - false, - null, - void 0, - {}, - [], - /.*/, - new Date() - ]; - - for ( i = 0; i < values.length; i++ ) { - t.throws( badValue( values[i] ), TypeError, 'throws a type error when provided '+values[i] ); - } - t.end(); - - function badValue( value ) { - return function badValue() { - doWhileEachRight( [ 1, 2, 3 ], value, noop ); - }; - } -}); - -tape( 'the function throws an error if not provided a predicate function', function test( t ) { - var values; - var i; - - values = [ - '5', - 5, - NaN, - true, - false, - null, - void 0, - {}, - [], - /.*/, - new Date() - ]; - - for ( i = 0; i < values.length; i++ ) { - t.throws( badValue( values[i] ), TypeError, 'throws a type error when provided '+values[i] ); - } - t.end(); - - function badValue( value ) { - return function badValue() { - doWhileEachRight( [ 1, 2, 3 ], noop, value ); - }; - } -}); - -tape( 'the function returns the input collection', function test( t ) { - var arr; - var out; - - function predicate() { - t.pass( 'invoked predicated function' ); - return true; - } - - function foo() { - t.pass( 'invoked provided function' ); - } - - arr = [ 1, 2, 3 ]; - - out = doWhileEachRight( arr, foo, predicate ); - - t.strictEqual( out, arr, 'returns input collection' ); - t.end(); -}); - -tape( 'if provided an empty collection, the function invokes a provided function once', function test( t ) { - var count = 0; - var arr = []; - - function predicate() { - t.fail( 'should not be invoked' ); - } - - function foo( value, index, collection ) { - count += 1; - t.pass( 'should be invoked' ); - t.strictEqual( value, void 0, 'value is undefined' ); - t.strictEqual( value, void 0, 'value is undefined' ); - t.strictEqual( collection, arr, 'provides input collection' ); - } - - doWhileEachRight( arr, foo, predicate ); - - t.deepEqual( arr, [], 'expected result' ); - t.strictEqual( count, 1, 'should only invoke once' ); - - t.end(); -}); - -tape( 'while a test condition is true, the function invokes a provided function for each element in a collection, iterating from right to left (array)', function test( t ) { - var arr; - var out; - var i; - - arr = [ 1.0, NaN, 2.0, 3.0 ]; - out = [ 0.0, 0.0, 0.0, 0.0 ]; - i = -1; - - function predicate( value ) { - return ( value === value ); - } - - function copy( value ) { - i += 1; - out[ i ] = value; - } - - doWhileEachRight( arr, copy, predicate ); - - t.strictEqual( out[ 0 ], 3.0, 'expected result' ); - t.strictEqual( out[ 1 ], 2.0, 'expected result' ); - t.strictEqual( isnan( out[ 2 ] ), true, 'expected result' ); - t.strictEqual( out[ 3 ], 0.0, 'expected result' ); - - t.end(); -}); - -tape( 'while a test condition is true, the function invokes a provided function for each element in a collection, iterating from right to left (array-like object)', function test( t ) { - var arr; - var out; - var i; - - arr = { - 'length': 4, - '0': 1.0, - '1': NaN, - '2': 2.0, - '3': 3.0 - }; - out = { - 'length': 4, - '0': 0.0, - '1': 0.0, - '2': 0.0, - '3': 0.0 - }; - i = -1; - - function predicate( value ) { - return ( value === value ); - } - - function copy( value ) { - i += 1; - out[ i ] = value; - } - - doWhileEachRight( arr, copy, predicate ); - - t.strictEqual( out[ 0 ], 3.0, 'expected result' ); - t.strictEqual( out[ 1 ], 2.0, 'expected result' ); - t.strictEqual( isnan( out[ 2 ] ), true, 'expected result' ); - t.strictEqual( out[ 3 ], 0.0, 'expected result' ); - - t.end(); -}); - -tape( 'while a test condition is true, the function invokes a provided function for each element in a collection, iterating from right to left (typed array)', function test( t ) { - var arr; - var out; - var i; - - arr = new Float64Array( [ 1.0, NaN, 2.0, 3.0 ] ); - out = new Float32Array( [ 0.0, 0.0, 0.0, 0.0 ] ); - i = -1; - - function predicate( value ) { - return ( value === value ); - } - - function copy( value ) { - i += 1; - out[ i ] = value; - } - - doWhileEachRight( arr, copy, predicate ); - - t.strictEqual( out[ 0 ], 3.0, 'expected result' ); - t.strictEqual( out[ 1 ], 2.0, 'expected result' ); - t.strictEqual( isnan( out[ 2 ] ), true, 'expected result' ); - t.strictEqual( out[ 3 ], 0.0, 'expected result' ); - - t.end(); -}); - -tape( 'the function supports providing an execution context', function test( t ) { - var ctx; - var arr; - - function predicate( value ) { - return ( value === value ); - } - - function sum( value ) { - /* eslint-disable no-invalid-this */ - this.sum += value; - this.count += 1; - } - - ctx = { - 'sum': 0, - 'count': 0 - }; - arr = [ 1.0, 2.0, 3.0 ]; - - doWhileEachRight( arr, sum, predicate, ctx ); - - t.strictEqual( ctx.sum/ctx.count, 2.0, 'expected result' ); - - t.end(); -}); - -tape( 'the function provides basic support for dynamic arrays', function test( t ) { - var arr; - var out; - var i; - - arr = [ 1, 2, 3 ]; - out = []; - i = 0; - - function predicate( value ) { - return ( value === value ); - } - - function copy( value, index, collection ) { - out.push( value ); - i += 1; - if ( index === 0 && collection.length < 10 ) { - collection.unshift( i+1 ); - } - } - - doWhileEachRight( arr, copy, predicate ); - - t.deepEqual( arr, [ 10, 9, 8, 7, 6, 5, 4, 1, 2, 3 ], 'expected result' ); - t.deepEqual( out, [ 3, 2, 1, 4, 5, 6, 7, 8, 9, 10 ], 'expected result' ); - t.end(); -}); - -tape( 'the function provides basic support for dynamic arrays (empty initial collection)', function test( t ) { - var arr; - var out; - var i; - - arr = []; - out = []; - i = 0; - - function predicate( value ) { - return ( value === value ); - } - - function copy( value, index, collection ) { - if ( index === void 0 ) { - collection.unshift( 1 ); - } else { - out.push( value ); - i += 1; - if ( index === 0 && collection.length < 10 ) { - collection.unshift( i+1 ); - } - } - } - - doWhileEachRight( arr, copy, predicate ); - - t.deepEqual( arr, [ 10, 9, 8, 7, 6, 5, 4, 3, 2, 1 ], 'expected result' ); - t.deepEqual( out, [ 1, 2, 3, 4, 5, 6, 7, 8, 9, 10 ], 'expected result' ); - t.end(); -}); - -tape( 'the function does not skip empty elements', function test( t ) { - var expected; - var arr; - var i; - var j; - - arr = [ 1, , , 4 ]; // eslint-disable-line no-sparse-arrays - expected = [ 4, void 0, void 0, 1 ]; - i = -1; - j = -1; - - function predicate( value ) { - i += 1; - t.strictEqual( value, expected[ i ], 'provides expected value' ); - return true; - } - - function verify( value ) { - j += 1; - t.strictEqual( value, expected[ j ], 'provides expected value' ); - } - - doWhileEachRight( arr, verify, predicate ); - t.end(); -}); - -tape( 'the function invokes the predicate function and the function to apply with three arguments: value, index, collection', function test( t ) { - var indices; - var values; - var arr; - var i; - var j; - - i = -1; - j = -1; - - function predicate( value, index, collection ) { - i += 1; - t.strictEqual( value, values[ i ], 'provides expected value' ); - t.strictEqual( index, indices[ i ], 'provides expected index' ); - t.strictEqual( collection, arr, 'provides input collection' ); - return true; - } - - function verify( value, index, collection ) { - j += 1; - t.strictEqual( value, values[ j ], 'provides expected value' ); - t.strictEqual( index, indices[ j ], 'provides expected index' ); - t.strictEqual( collection, arr, 'provides input collection' ); - } - - arr = [ 1, 2, 3, 4 ]; - values = [ 4, 3, 2, 1 ]; - indices = [ 3, 2, 1, 0 ]; - - doWhileEachRight( arr, verify, predicate ); + t.strictEqual( main !== void 0, true, 'main export is defined' ); t.end(); });