Skip to content

Commit

Permalink
Auto-generated commit
Browse files Browse the repository at this point in the history
  • Loading branch information
stdlib-bot committed Aug 2, 2023
1 parent a4787c1 commit 8447281
Show file tree
Hide file tree
Showing 187 changed files with 191 additions and 191 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/productionize.yml
Original file line number Diff line number Diff line change
Expand Up @@ -349,7 +349,7 @@ jobs:
# Send status to Slack channel if job fails:
- name: 'Send status to Slack channel in case of failure'
uses: act10ns/slack@v1
uses: act10ns/slack@v2
with:
status: ${{ job.status }}
steps: ${{ toJson(steps) }}
Expand Down Expand Up @@ -520,7 +520,7 @@ jobs:
# Send status to Slack channel if job fails:
- name: 'Send status to Slack channel in case of failure'
uses: act10ns/slack@v1
uses: act10ns/slack@v2
with:
status: ${{ job.status }}
steps: ${{ toJson(steps) }}
Expand Down Expand Up @@ -697,7 +697,7 @@ jobs:
# Send status to Slack channel if job fails:
- name: 'Send status to Slack channel in case of failure'
uses: act10ns/slack@v1
uses: act10ns/slack@v2
with:
status: ${{ job.status }}
steps: ${{ toJson(steps) }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -209,7 +209,7 @@ jobs:
# Send status to Slack channel if job fails:
- name: 'Send status to Slack channel in case of failure'
uses: act10ns/slack@v1
uses: act10ns/slack@v2
with:
status: ${{ job.status }}
steps: ${{ toJson(steps) }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,7 @@ jobs:
# Send status to Slack channel if job fails:
- name: 'Send status to Slack channel in case of failure'
uses: act10ns/slack@v1
uses: act10ns/slack@v2
with:
status: ${{ job.status }}
steps: ${{ toJson(steps) }}
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/test_bundles.yml
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,7 @@ jobs:
# Send notification to Slack channel if job fails:
- name: 'Send status to Slack channel in case of failure'
uses: act10ns/slack@v1
uses: act10ns/slack@v2
with:
status: ${{ job.status }}
steps: ${{ toJson(steps) }}
Expand Down Expand Up @@ -130,7 +130,7 @@ jobs:
# Send notification to Slack channel if job fails:
- name: 'Send status to Slack channel in case of failure'
uses: act10ns/slack@v1
uses: act10ns/slack@v2
with:
status: ${{ job.status }}
steps: ${{ toJson(steps) }}
Expand Down Expand Up @@ -172,7 +172,7 @@ jobs:
# Send notification to Slack channel if job fails:
- name: 'Send status to Slack channel in case of failure'
uses: act10ns/slack@v1
uses: act10ns/slack@v2
with:
status: ${{ job.status }}
steps: ${{ toJson(steps) }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/test_coverage.yml
Original file line number Diff line number Diff line change
Expand Up @@ -106,7 +106,7 @@ jobs:
# Send Slack notification if job fails:
- name: 'Send status to Slack channel in case of failure'
uses: act10ns/slack@v1
uses: act10ns/slack@v2
with:
status: ${{ job.status }}
steps: ${{ toJson(steps) }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/test_install.yml
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ jobs:

# Send Slack notification if job fails:
- name: 'Send notification to Slack in case of failure'
uses: act10ns/slack@v1
uses: act10ns/slack@v2
with:
status: ${{ job.status }}
steps: ${{ toJson(steps) }}
Expand Down
2 changes: 1 addition & 1 deletion async/compose/test/test.js
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ var composeAsync = require( './../lib' );

tape( 'main export is a function', function test( t ) {
t.ok( true, __filename );
t.equal( typeof composeAsync, 'function', 'main export is a function' );
t.strictEqual( typeof composeAsync, 'function', 'main export is a function' );
t.end();
});

Expand Down
2 changes: 1 addition & 1 deletion async/function-sequence/test/test.js
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ var funseqAsync = require( './../lib' );

tape( 'main export is a function', function test( t ) {
t.ok( true, __filename );
t.equal( typeof funseqAsync, 'function', 'main export is a function' );
t.strictEqual( typeof funseqAsync, 'function', 'main export is a function' );
t.end();
});

Expand Down
2 changes: 1 addition & 1 deletion async/test/test.js
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ var ns = require( './../lib' );

tape( 'main export is an object', function test( t ) {
t.ok( true, __filename );
t.equal( typeof ns, 'object', 'main export is an object' );
t.strictEqual( typeof ns, 'object', 'main export is an object' );
t.end();
});

Expand Down
2 changes: 1 addition & 1 deletion compose/test/test.js
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ var compose = require( './../lib' );

tape( 'main export is a function', function test( t ) {
t.ok( true, __filename );
t.equal( typeof compose, 'function', 'main export is a function' );
t.strictEqual( typeof compose, 'function', 'main export is a function' );
t.end();
});

Expand Down
2 changes: 1 addition & 1 deletion constant-function/test/test.js
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ var constantFunction = require( './../lib' );

tape( 'main export is a function', function test( t ) {
t.ok( true, __filename );
t.equal( typeof constantFunction, 'function', 'main export is a function' );
t.strictEqual( typeof constantFunction, 'function', 'main export is a function' );
t.end();
});

Expand Down
2 changes: 1 addition & 1 deletion constructor-name/test/test.js
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ var constructorName = require( './../lib' );

tape( 'main export is a function', function test( t ) {
t.ok( true, __filename );
t.equal( typeof constructorName, 'function', 'export is a function' );
t.strictEqual( typeof constructorName, 'function', 'export is a function' );
t.end();
});

Expand Down
2 changes: 1 addition & 1 deletion copy/test/test.copy_error.js
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ var opts = {

tape( 'main export is a function', function test( t ) {
t.ok( true, __filename );
t.equal( typeof copy, 'function', 'export is a function' );
t.strictEqual( typeof copy, 'function', 'export is a function' );
t.end();
});

Expand Down
2 changes: 1 addition & 1 deletion copy/test/test.deep_copy.js
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ var LEVEL = PINF;

tape( 'main export is a function', function test( t ) {
t.ok( true, __filename );
t.equal( typeof copy, 'function', 'export is a function' );
t.strictEqual( typeof copy, 'function', 'export is a function' );
t.end();
});

Expand Down
2 changes: 1 addition & 1 deletion copy/test/test.js
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ var fixtures = require( './fixtures' );

tape( 'main export is a function', function test( t ) {
t.ok( true, __filename );
t.equal( typeof copy, 'function', 'export is a function' );
t.strictEqual( typeof copy, 'function', 'export is a function' );
t.end();
});

Expand Down
2 changes: 1 addition & 1 deletion curry-right/test/test.js
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ function add( x, y, z ) {

tape( 'main export is a function', function test( t ) {
t.ok( true, __filename );
t.equal( typeof curryRight, 'function', 'main export is a function' );
t.strictEqual( typeof curryRight, 'function', 'main export is a function' );
t.end();
});

Expand Down
2 changes: 1 addition & 1 deletion curry/test/test.js
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ function add( x, y, z ) {

tape( 'main export is a function', function test( t ) {
t.ok( true, __filename );
t.equal( typeof curry, 'function', 'main export is a function' );
t.strictEqual( typeof curry, 'function', 'main export is a function' );
t.end();
});

Expand Down
2 changes: 1 addition & 1 deletion decorate-after/test/test.factory.js
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ var decorateAfter = require( './../lib/factory.js' );

tape( 'main export is a function', function test( t ) {
t.ok( true, __filename );
t.equal( typeof decorateAfter, 'function', 'main export is a function' );
t.strictEqual( typeof decorateAfter, 'function', 'main export is a function' );
t.end();
});

Expand Down
2 changes: 1 addition & 1 deletion decorate-after/test/test.js
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ var decorateAfter = require( './../lib' );

tape( 'main export is a function', function test( t ) {
t.ok( true, __filename );
t.equal( typeof decorateAfter, 'function', 'main export is a function' );
t.strictEqual( typeof decorateAfter, 'function', 'main export is a function' );
t.end();
});

Expand Down
2 changes: 1 addition & 1 deletion decorate-after/test/test.main.js
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ var decorateAfter = require( './../lib' );

tape( 'main export is a function', function test( t ) {
t.ok( true, __filename );
t.equal( typeof decorateAfter, 'function', 'main export is a function' );
t.strictEqual( typeof decorateAfter, 'function', 'main export is a function' );
t.end();
});

Expand Down
2 changes: 1 addition & 1 deletion deep-get/test/test.dget.js
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ var dget = require( './../lib/dget.js' );

tape( 'main export is a function', function test( t ) {
t.ok( true, __filename );
t.equal( typeof dget, 'function', 'main export is a function' );
t.strictEqual( typeof dget, 'function', 'main export is a function' );
t.end();
});

Expand Down
2 changes: 1 addition & 1 deletion deep-get/test/test.factory.js
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ var factory = require( './../lib/factory.js' );

tape( 'main export is a function', function test( t ) {
t.ok( true, __filename );
t.equal( typeof factory, 'function', 'main export is a function' );
t.strictEqual( typeof factory, 'function', 'main export is a function' );
t.end();
});

Expand Down
2 changes: 1 addition & 1 deletion deep-get/test/test.js
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ var deepGet = require( './../lib' );

tape( 'main export is a function', function test( t ) {
t.ok( true, __filename );
t.equal( typeof deepGet, 'function', 'main export is a function' );
t.strictEqual( typeof deepGet, 'function', 'main export is a function' );
t.end();
});

Expand Down
2 changes: 1 addition & 1 deletion deep-get/test/test.validate.js
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ var validate = require( './../lib/validate.js' );

tape( 'main export is a function', function test( t ) {
t.ok( true, __filename );
t.equal( typeof validate, 'function', 'main export is a function' );
t.strictEqual( typeof validate, 'function', 'main export is a function' );
t.end();
});

Expand Down
2 changes: 1 addition & 1 deletion deep-set/test/test.dset.js
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ var dset = require( './../lib/dset.js' );

tape( 'main export is a function', function test( t ) {
t.ok( true, __filename );
t.equal( typeof dset, 'function', 'main export is a function' );
t.strictEqual( typeof dset, 'function', 'main export is a function' );
t.end();
});

Expand Down
2 changes: 1 addition & 1 deletion deep-set/test/test.factory.js
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ var factory = require( './../lib/factory.js' );

tape( 'main export is a function', function test( t ) {
t.ok( true, __filename );
t.equal( typeof factory, 'function', 'main export is a function' );
t.strictEqual( typeof factory, 'function', 'main export is a function' );
t.end();
});

Expand Down
2 changes: 1 addition & 1 deletion deep-set/test/test.js
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ var deepSet = require( './../lib' );

tape( 'main export is a function', function test( t ) {
t.ok( true, __filename );
t.equal( typeof deepSet, 'function', 'main export is a function' );
t.strictEqual( typeof deepSet, 'function', 'main export is a function' );
t.end();
});

Expand Down
2 changes: 1 addition & 1 deletion deep-set/test/test.validate.js
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ var validate = require( './../lib/validate.js' );

tape( 'main export is a function', function test( t ) {
t.ok( true, __filename );
t.equal( typeof validate, 'function', 'main export is a function' );
t.strictEqual( typeof validate, 'function', 'main export is a function' );
t.end();
});

Expand Down
2 changes: 1 addition & 1 deletion define-configurable-read-only-accessor/test/test.js
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ var setConfigurableReadOnlyAccessor = require( './../lib' ); // eslint-disable-l

tape( 'main export is a function', function test( t ) {
t.ok( true, __filename );
t.equal( typeof setConfigurableReadOnlyAccessor, 'function', 'main export is a function' );
t.strictEqual( typeof setConfigurableReadOnlyAccessor, 'function', 'main export is a function' );
t.end();
});

Expand Down
2 changes: 1 addition & 1 deletion define-configurable-read-only-property/test/test.js
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ var setConfigurableReadOnly = require( './../lib' );

tape( 'main export is a function', function test( t ) {
t.ok( true, __filename );
t.equal( typeof setConfigurableReadOnly, 'function', 'main export is a function' );
t.strictEqual( typeof setConfigurableReadOnly, 'function', 'main export is a function' );
t.end();
});

Expand Down
2 changes: 1 addition & 1 deletion define-configurable-read-write-accessor/test/test.js
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ var setConfigurableReadWriteAccessor = require( './../lib' ); // eslint-disable-

tape( 'main export is a function', function test( t ) {
t.ok( true, __filename );
t.equal( typeof setConfigurableReadWriteAccessor, 'function', 'main export is a function' );
t.strictEqual( typeof setConfigurableReadWriteAccessor, 'function', 'main export is a function' );
t.end();
});

Expand Down
2 changes: 1 addition & 1 deletion define-configurable-write-only-accessor/test/test.js
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ var setConfigurableWriteOnlyAccessor = require( './../lib' ); // eslint-disable-

tape( 'main export is a function', function test( t ) {
t.ok( true, __filename );
t.equal( typeof setConfigurableWriteOnlyAccessor, 'function', 'main export is a function' );
t.strictEqual( typeof setConfigurableWriteOnlyAccessor, 'function', 'main export is a function' );
t.end();
});

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ var setMemoizedConfigurableReadOnly = require( './../lib' ); // eslint-disable-l

tape( 'main export is a function', function test( t ) {
t.ok( true, __filename );
t.equal( typeof setMemoizedConfigurableReadOnly, 'function', 'main export is a function' );
t.strictEqual( typeof setMemoizedConfigurableReadOnly, 'function', 'main export is a function' );
t.end();
});

Expand Down
2 changes: 1 addition & 1 deletion define-memoized-property/test/test.js
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ var defineMemoizedProperty = require( './../lib' );

tape( 'main export is a function', function test( t ) {
t.ok( true, __filename );
t.equal( typeof defineMemoizedProperty, 'function', 'main export is a function' );
t.strictEqual( typeof defineMemoizedProperty, 'function', 'main export is a function' );
t.end();
});

Expand Down
2 changes: 1 addition & 1 deletion define-memoized-read-only-property/test/test.js
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ var setMemoizedReadOnly = require( './../lib' );

tape( 'main export is a function', function test( t ) {
t.ok( true, __filename );
t.equal( typeof setMemoizedReadOnly, 'function', 'main export is a function' );
t.strictEqual( typeof setMemoizedReadOnly, 'function', 'main export is a function' );
t.end();
});

Expand Down
2 changes: 1 addition & 1 deletion define-nonenumerable-property/test/test.js
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ var setNonEnumerableProperty = require( './../lib' );

tape( 'main export is a function', function test( t ) {
t.ok( true, __filename );
t.equal( typeof setNonEnumerableProperty, 'function', 'main export is a function' );
t.strictEqual( typeof setNonEnumerableProperty, 'function', 'main export is a function' );
t.end();
});

Expand Down
2 changes: 1 addition & 1 deletion define-nonenumerable-read-only-accessor/test/test.js
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ var setNonEnumerableReadOnlyAccessor = require( './../lib' ); // eslint-disable-

tape( 'main export is a function', function test( t ) {
t.ok( true, __filename );
t.equal( typeof setNonEnumerableReadOnlyAccessor, 'function', 'main export is a function' );
t.strictEqual( typeof setNonEnumerableReadOnlyAccessor, 'function', 'main export is a function' );
t.end();
});

Expand Down
2 changes: 1 addition & 1 deletion define-nonenumerable-read-only-property/test/test.js
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ var setNonEnumerableReadOnly = require( './../lib' );

tape( 'main export is a function', function test( t ) {
t.ok( true, __filename );
t.equal( typeof setNonEnumerableReadOnly, 'function', 'main export is a function' );
t.strictEqual( typeof setNonEnumerableReadOnly, 'function', 'main export is a function' );
t.end();
});

Expand Down
2 changes: 1 addition & 1 deletion define-nonenumerable-read-write-accessor/test/test.js
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ var setNonEnumerableReadWriteAccessor = require( './../lib' ); // eslint-disable

tape( 'main export is a function', function test( t ) {
t.ok( true, __filename );
t.equal( typeof setNonEnumerableReadWriteAccessor, 'function', 'main export is a function' );
t.strictEqual( typeof setNonEnumerableReadWriteAccessor, 'function', 'main export is a function' );
t.end();
});

Expand Down
2 changes: 1 addition & 1 deletion define-nonenumerable-write-only-accessor/test/test.js
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ var setNonEnumerableWriteOnlyAccessor = require( './../lib' ); // eslint-disable

tape( 'main export is a function', function test( t ) {
t.ok( true, __filename );
t.equal( typeof setNonEnumerableWriteOnlyAccessor, 'function', 'main export is a function' );
t.strictEqual( typeof setNonEnumerableWriteOnlyAccessor, 'function', 'main export is a function' );
t.end();
});

Expand Down
Loading

0 comments on commit 8447281

Please sign in to comment.