@stdlib/math-base-napi-ternary

C APIs for registering an N-API module exporting an interface for invoking a ternary numerical function.

https://github.com/stdlib-js/math-base-napi-ternary

Science Score: 44.0%

This score indicates how likely this project is to be science-related based on various indicators:

  • CITATION.cff file
    Found CITATION.cff file
  • codemeta.json file
    Found codemeta.json file
  • .zenodo.json file
    Found .zenodo.json file
  • DOI references
  • Academic publication links
  • Committers with academic emails
  • Institutional organization owner
  • JOSS paper metadata
  • Scientific vocabulary similarity
    Low similarity (14.8%) to scientific vocabulary

Keywords

addon javascript map math mathematics n-api napi node node-js nodejs stdlib ternary transform
Last synced: 6 months ago · JSON representation ·

Repository

C APIs for registering an N-API module exporting an interface for invoking a ternary numerical function.

Basic Info
Statistics
  • Stars: 2
  • Watchers: 3
  • Forks: 0
  • Open Issues: 0
  • Releases: 0
Topics
addon javascript map math mathematics n-api napi node node-js nodejs stdlib ternary transform
Created over 4 years ago · Last pushed 6 months ago
Metadata Files
Readme Changelog Contributing License Code of conduct Citation Security

README.md

About stdlib...

We believe in a future in which the web is a preferred environment for numerical computation. To help realize this future, we've built stdlib. stdlib is a standard library, with an emphasis on numerical and scientific computation, written in JavaScript (and C) for execution in browsers and in Node.js.

The library is fully decomposable, being architected in such a way that you can swap out and mix and match APIs and functionality to cater to your exact preferences and use cases.

When you use stdlib, you can be absolutely certain that you are using the most thorough, rigorous, well-written, studied, documented, tested, measured, and high-quality code out there.

To join us in bringing numerical computing to the web, get started by checking us out on GitHub, and please consider financially supporting stdlib. We greatly appreciate your continued support!

ternary

NPM version Build Status Coverage Status <!-- dependencies -->

C APIs for registering a Node-API module exporting interfaces for invoking ternary numerical functions.

## Installation ```bash npm install @stdlib/math-base-napi-ternary ```
## Usage ```javascript var headerDir = require( '@stdlib/math-base-napi-ternary' ); ``` #### headerDir Absolute file path for the directory containing header files for C APIs. ```javascript var dir = headerDir; // returns ```
## Examples ```javascript var headerDir = require( '@stdlib/math-base-napi-ternary' ); console.log( headerDir ); // => ```

## C APIs
### Usage ```c #include "stdlib/math/base/napi/ternary.h" ``` #### STDLIB_MATH_BASE_NAPI_MODULE_CCC_C( fcn ) Macro for registering a Node-API module exporting an interface for invoking a ternary function accepting and returning single-precision complex floating-point numbers. ```c #include "stdlib/complex/float32/ctor.h" #include "stdlib/complex/float32/reim.h" static stdlib_complex64_t add( const stdlib_complex64_t x, const stdlib_complex64_t y, const stdlib_complex64_t z ) { float xre; float xim; float yre; float yim; float zre; float zim; float re; float im; stdlib_complex64_reim( x, &xre, &xim ); stdlib_complex64_reim( y, &yre, &yim ); stdlib_complex64_reim( z, &zre, &zim ); re = xre + yre + zre; im = xim + yim + zim; return stdlib_complex64( re, im ); } // ... // Register a Node-API module: STDLIB_MATH_BASE_NAPI_MODULE_CCC_C( add ); ``` The macro expects the following arguments: - **fcn**: `stdlib_complex64_t (*fcn)( stdlib_complex64_t, stdlib_complex64_t, stdlib_complex64_t )` ternary function. When used, this macro should be used **instead of** `NAPI_MODULE`. The macro includes `NAPI_MODULE`, thus ensuring Node-API module registration. #### stdlib_math_base_napi_ccc_c( env, info, fcn ) Invokes a ternary function accepting and returning single-precision complex floating-point numbers. ```c #include "stdlib/complex/float32/ctor.h" #include "stdlib/complex/float32/reim.h" #include // ... static stdlib_complex64_t add( const stdlib_complex64_t x, const stdlib_complex64_t y, const stdlib_complex64_t z ) { float xre; float xim; float yre; float yim; float zre; float zim; float re; float im; stdlib_complex64_reim( x, &xre, &xim ); stdlib_complex64_reim( y, &yre, &yim ); stdlib_complex64_reim( z, &zre, &zim ); re = xre + yre + zre; im = xim + yim + zim; return stdlib_complex64( re, im ); } // ... /** * Receives JavaScript callback invocation data. * * @param env environment under which the function is invoked * @param info callback data * @return Node-API value */ napi_value addon( napi_env env, napi_callback_info info ) { return stdlib_math_base_napi_ccc_c( env, info, add ); } // ... ``` The function accepts the following arguments: - **env**: `[in] napi_env` environment under which the function is invoked. - **info**: `[in] napi_callback_info` callback data. - **fcn**: `[in] stdlib_complex64_t (*fcn)( stdlib_complex64_t, stdlib_complex64_t, stdlib_complex64_t )` ternary function. ```c void stdlib_math_base_napi_ccc_c( napi_env env, napi_callback_info info, stdlib_complex64_t (*fcn)( stdlib_complex64_t, stdlib_complex64_t, stdlib_complex64_t ) ); ``` #### STDLIB_MATH_BASE_NAPI_MODULE_DDD_D( fcn ) Macro for registering a Node-API module exporting an interface for invoking a ternary function accepting and returning double-precision floating-point numbers. ```c static double add( const double x, const double y, const double z ) { return x + y + z; } // ... // Register a Node-API module: STDLIB_MATH_BASE_NAPI_MODULE_DDD_D( add ); ``` The macro expects the following arguments: - **fcn**: `double (*fcn)( double, double, double )` ternary function. When used, this macro should be used **instead of** `NAPI_MODULE`. The macro includes `NAPI_MODULE`, thus ensuring Node-API module registration. #### stdlib_math_base_napi_ddd_d( env, info, fcn ) Invokes a ternary function accepting and returning double-precision floating-point numbers. ```c #include // ... static double add( const double x, const double y, const double z ) { return x + y + z; } // ... /** * Receives JavaScript callback invocation data. * * @param env environment under which the function is invoked * @param info callback data * @return Node-API value */ napi_value addon( napi_env env, napi_callback_info info ) { return stdlib_math_base_napi_ddd_d( env, info, add ); } // ... ``` The function accepts the following arguments: - **env**: `[in] napi_env` environment under which the function is invoked. - **info**: `[in] napi_callback_info` callback data. - **fcn**: `[in] double (*fcn)( double, double, double )` ternary function. ```c void stdlib_math_base_napi_ddd_d( napi_env env, napi_callback_info info, double (*fcn)( double, double, double ) ); ``` #### STDLIB_MATH_BASE_NAPI_MODULE_DID_D( fcn ) Macro for registering a Node-API module exporting an interface for invoking a ternary function accepting a double-precision floating-point number, a signed 32-bit integer, and a double-precision floating-point number and returning a double-precision floating-point number. ```c #include static double fcn( const double x, const int32_t y, const double z ) { // ... } // ... // Register a Node-API module: STDLIB_MATH_BASE_NAPI_MODULE_DID_D( fcn ); ``` The macro expects the following arguments: - **fcn**: `double (*fcn)( double, int32_t, double )` ternary function. When used, this macro should be used **instead of** `NAPI_MODULE`. The macro includes `NAPI_MODULE`, thus ensuring Node-API module registration. #### stdlib_math_base_napi_did_d( env, info, fcn ) Invokes a ternary function accepting a double-precision floating-point number, a signed 32-bit integer, and a double-precision floating-point number and returning a double-precision floating-point number. ```c #include #include // ... static double fcn( const double x, const int32_t y, const double z ) { // ... } // ... /** * Receives JavaScript callback invocation data. * * @param env environment under which the function is invoked * @param info callback data * @return Node-API value */ napi_value addon( napi_env env, napi_callback_info info ) { return stdlib_math_base_napi_did_d( env, info, fcn ); } // ... ``` The function accepts the following arguments: - **env**: `[in] napi_env` environment under which the function is invoked. - **info**: `[in] napi_callback_info` callback data. - **fcn**: `[in] double (*fcn)( double, int32_t, double )` ternary function. ```c void stdlib_math_base_napi_did_d( napi_env env, napi_callback_info info, double (*fcn)( double, int32_t, double ) ); ``` #### STDLIB_MATH_BASE_NAPI_MODULE_DII_D( fcn ) Macro for registering a Node-API module exporting an interface for invoking a ternary function accepting a double-precision floating-point number and two signed 32-bit integers and returning a double-precision floating-point number. ```c #include static double fcn( const double x, const int32_t y, const int32_t z ) { // ... } // ... // Register a Node-API module: STDLIB_MATH_BASE_NAPI_MODULE_DII_D( fcn ); ``` The macro expects the following arguments: - **fcn**: `double (*fcn)( double, int32_t, int32_t )` ternary function. When used, this macro should be used **instead of** `NAPI_MODULE`. The macro includes `NAPI_MODULE`, thus ensuring Node-API module registration. #### stdlib_math_base_napi_dii_d( env, info, fcn ) Invokes a ternary function accepting a double-precision floating-point number and two signed 32-bit integers and returning a double-precision floating-point number. ```c #include #include // ... static double fcn( const double x, const int32_t y, const int32_t z ) { // ... } // ... /** * Receives JavaScript callback invocation data. * * @param env environment under which the function is invoked * @param info callback data * @return Node-API value */ napi_value addon( napi_env env, napi_callback_info info ) { return stdlib_math_base_napi_dii_d( env, info, fcn ); } // ... ``` The function accepts the following arguments: - **env**: `[in] napi_env` environment under which the function is invoked. - **info**: `[in] napi_callback_info` callback data. - **fcn**: `[in] double (*fcn)( double, int32_t, int32_t )` ternary function. ```c void stdlib_math_base_napi_dii_d( napi_env env, napi_callback_info info, double (*fcn)( double, int32_t, int32_t ) ); ``` #### STDLIB_MATH_BASE_NAPI_MODULE_FFF_F( fcn ) Macro for registering a Node-API module exporting an interface for invoking a ternary function accepting and returning single-precision floating-point numbers. ```c static float addf( const float x, const float y, const float z ) { return x + y + z; } // ... // Register a Node-API module: STDLIB_MATH_BASE_NAPI_MODULE_FFF_F( addf ); ``` The macro expects the following arguments: - **fcn**: `float (*fcn)( float, float, float )` ternary function. When used, this macro should be used **instead of** `NAPI_MODULE`. The macro includes `NAPI_MODULE`, thus ensuring Node-API module registration. #### stdlib_math_base_napi_fff_f( env, info, fcn ) Invokes a ternary function accepting and returning single-precision floating-point numbers. ```c #include // ... static float addf( const float x, const float y, const float z ) { return x + y + z; } // ... /** * Receives JavaScript callback invocation data. * * @param env environment under which the function is invoked * @param info callback data * @return Node-API value */ napi_value addon( napi_env env, napi_callback_info info ) { return stdlib_math_base_napi_fff_f( env, info, addf ); } // ... ``` The function accepts the following arguments: - **env**: `[in] napi_env` environment under which the function is invoked. - **info**: `[in] napi_callback_info` callback data. - **fcn**: `[in] float (*fcn)( float, float, float )` ternary function. ```c void stdlib_math_base_napi_fff_f( napi_env env, napi_callback_info info, float (*fcn)( float, float, float ) ); ``` #### STDLIB_MATH_BASE_NAPI_MODULE_FIF_F( fcn ) Macro for registering a Node-API module exporting an interface for invoking a ternary function accepting a single-precision floating-point number, a signed 32-bit integer, and a single-precision floating-point number and returning a single-precision floating-point number. ```c #include static float fcn( const float x, const int32_t y, const float z ) { // ... } // ... // Register a Node-API module: STDLIB_MATH_BASE_NAPI_MODULE_FIF_F( fcn ); ``` The macro expects the following arguments: - **fcn**: `float (*fcn)( float, int32_t, float )` ternary function. When used, this macro should be used **instead of** `NAPI_MODULE`. The macro includes `NAPI_MODULE`, thus ensuring Node-API module registration. #### stdlib_math_base_napi_fif_f( env, info, fcn ) Invokes a ternary function accepting a single-precision floating-point number, a signed 32-bit integer, and a single-precision floating-point number and returning a single-precision floating-point number. ```c #include #include // ... static float fcn( const float x, const int32_t y, const float z ) { // ... } // ... /** * Receives JavaScript callback invocation data. * * @param env environment under which the function is invoked * @param info callback data * @return Node-API value */ napi_value addon( napi_env env, napi_callback_info info ) { return stdlib_math_base_napi_fif_f( env, info, fcn ); } // ... ``` The function accepts the following arguments: - **env**: `[in] napi_env` environment under which the function is invoked. - **info**: `[in] napi_callback_info` callback data. - **fcn**: `[in] float (*fcn)( float, int32_t, float )` ternary function. ```c void stdlib_math_base_napi_fif_f( napi_env env, napi_callback_info info, float (*fcn)( float, int32_t, float ) ); ``` #### STDLIB_MATH_BASE_NAPI_MODULE_FII_F( fcn ) Macro for registering a Node-API module exporting an interface for invoking a ternary function accepting a single-precision floating-point number and two signed 32-bit integers and returning a single-precision floating-point number. ```c #include static float fcn( const float x, const int32_t y, const int32_t z ) { // ... } // ... // Register a Node-API module: STDLIB_MATH_BASE_NAPI_MODULE_FII_F( fcn ); ``` The macro expects the following arguments: - **fcn**: `float (*fcn)( float, int32_t, int32_t )` ternary function. When used, this macro should be used **instead of** `NAPI_MODULE`. The macro includes `NAPI_MODULE`, thus ensuring Node-API module registration. #### stdlib_math_base_napi_fii_f( env, info, fcn ) Invokes a ternary function accepting a single-precision floating-point number and two signed 32-bit integers and returning a single-precision floating-point number. ```c #include #include // ... static float fcn( const float x, const int32_t y, const int32_t z ) { // ... } // ... /** * Receives JavaScript callback invocation data. * * @param env environment under which the function is invoked * @param info callback data * @return Node-API value */ napi_value addon( napi_env env, napi_callback_info info ) { return stdlib_math_base_napi_fii_f( env, info, fcn ); } // ... ``` The function accepts the following arguments: - **env**: `[in] napi_env` environment under which the function is invoked. - **info**: `[in] napi_callback_info` callback data. - **fcn**: `[in] float (*fcn)( float, int32_t, int32_t )` ternary function. ```c void stdlib_math_base_napi_fii_f( napi_env env, napi_callback_info info, float (*fcn)( float, int32_t, int32_t ) ); ``` #### STDLIB_MATH_BASE_NAPI_MODULE_IID_D( fcn ) Macro for registering a Node-API module exporting an interface for invoking a ternary function accepting two signed 32-bit integers and a double-precision floating-point number and returning a double-precision floating-point number. ```c #include static double fcn( const int32_t x, const int32_t y, const double z ) { // ... } // ... // Register a Node-API module: STDLIB_MATH_BASE_NAPI_MODULE_IID_D( fcn ); ``` The macro expects the following arguments: - **fcn**: `double (*fcn)( int32_t, int32_t, double )` ternary function. When used, this macro should be used **instead of** `NAPI_MODULE`. The macro includes `NAPI_MODULE`, thus ensuring Node-API module registration. #### stdlib_math_base_napi_iid_d( env, info, fcn ) Invokes a ternary function accepting two signed 32-bit integers and a double-precision floating-point number and returning a double-precision floating-point number. ```c #include #include // ... static double fcn( const int32_t x, const int32_t y, const double z ) { // ... } // ... /** * Receives JavaScript callback invocation data. * * @param env environment under which the function is invoked * @param info callback data * @return Node-API value */ napi_value addon( napi_env env, napi_callback_info info ) { return stdlib_math_base_napi_iid_d( env, info, fcn ); } // ... ``` The function accepts the following arguments: - **env**: `[in] napi_env` environment under which the function is invoked. - **info**: `[in] napi_callback_info` callback data. - **fcn**: `[in] double (*fcn)( int32_t, int32_t, double )` ternary function. ```c void stdlib_math_base_napi_iid_d( napi_env env, napi_callback_info info, double (*fcn)( int32_t, int32_t, double ) ); ``` #### STDLIB_MATH_BASE_NAPI_MODULE_III_D( fcn ) Macro for registering a Node-API module exporting an interface for invoking a ternary function accepting three signed 32-bit integers and returning a double-precision floating-point number. ```c #include static double fcn( const int32_t x, const int32_t y, const int32_t z ) { // ... } // ... // Register a Node-API module: STDLIB_MATH_BASE_NAPI_MODULE_III_D( fcn ); ``` The macro expects the following arguments: - **fcn**: `double (*fcn)( int32_t, int32_t, int32_t )` ternary function. When used, this macro should be used **instead of** `NAPI_MODULE`. The macro includes `NAPI_MODULE`, thus ensuring Node-API module registration. #### stdlib_math_base_napi_iii_d( env, info, fcn ) Invokes a ternary function accepting three signed 32-bit integers and returning a double-precision floating-point number. ```c #include #include // ... static double fcn( const int32_t x, const int32_t y, const int32_t z ) { // ... } // ... /** * Receives JavaScript callback invocation data. * * @param env environment under which the function is invoked * @param info callback data * @return Node-API value */ napi_value addon( napi_env env, napi_callback_info info ) { return stdlib_math_base_napi_iii_d( env, info, fcn ); } // ... ``` The function accepts the following arguments: - **env**: `[in] napi_env` environment under which the function is invoked. - **info**: `[in] napi_callback_info` callback data. - **fcn**: `[in] double (*fcn)( int32_t, int32_t, int32_t )` ternary function. ```c void stdlib_math_base_napi_iii_d( napi_env env, napi_callback_info info, double (*fcn)( int32_t, int32_t, int32_t ) ); ``` #### STDLIB_MATH_BASE_NAPI_MODULE_ZZZ_Z( fcn ) Macro for registering a Node-API module exporting an interface for invoking a ternary function accepting and returning double-precision complex floating-point numbers. ```c #include "stdlib/complex/float64/ctor.h" #include "stdlib/complex/float64/reim.h" static stdlib_complex128_t add( const stdlib_complex128_t x, const stdlib_complex128_t y, const stdlib_complex128_t z ) { double xre; double xim; double yre; double yim; double zre; double zim; double re; double im; stdlib_complex128_reim( x, &xre, &xim ); stdlib_complex128_reim( y, &yre, &yim ); stdlib_complex128_reim( z, &zre, &zim ); re = xre + yre + zre; im = xim + yim + zim; return stdlib_complex128( re, im ); } // ... // Register a Node-API module: STDLIB_MATH_BASE_NAPI_MODULE_ZZZ_Z( add ); ``` The macro expects the following arguments: - **fcn**: `stdlib_complex128_t (*fcn)( stdlib_complex128_t, stdlib_complex128_t, stdlib_complex128_t )` ternary function. When used, this macro should be used **instead of** `NAPI_MODULE`. The macro includes `NAPI_MODULE`, thus ensuring Node-API module registration. #### stdlib_math_base_napi_zzz_z( env, info, fcn ) Invokes a ternary function accepting and returning double-precision complex floating-point numbers. ```c #include "stdlib/complex/float64/ctor.h" #include "stdlib/complex/float64/reim.h" #include // ... static stdlib_complex128_t add( const stdlib_complex128_t x, const stdlib_complex128_t y, const stdlib_complex128_t z ) { double xre; double xim; double yre; double yim; double zre; double zim; double re; double im; stdlib_complex128_reim( x, &xre, &xim ); stdlib_complex128_reim( y, &yre, &yim ); stdlib_complex128_reim( z, &zre, &zim ); re = xre + yre + zre; im = xim + yim + zim; return stdlib_complex128( re, im ); } // ... /** * Receives JavaScript callback invocation data. * * @param env environment under which the function is invoked * @param info callback data * @return Node-API value */ napi_value addon( napi_env env, napi_callback_info info ) { return stdlib_math_base_napi_zzz_z( env, info, add ); } // ... ``` The function accepts the following arguments: - **env**: `[in] napi_env` environment under which the function is invoked. - **info**: `[in] napi_callback_info` callback data. - **fcn**: `[in] stdlib_complex128_t (*fcn)( stdlib_complex128_t, stdlib_complex128_t, stdlib_complex128_t )` ternary function. ```c void stdlib_math_base_napi_zzz_z( napi_env env, napi_callback_info info, stdlib_complex128_t (*fcn)( stdlib_complex128_t, stdlib_complex128_t, stdlib_complex128_t ) ); ```
### Notes - The C-API functions expect that the callback `info` argument provides access to the following JavaScript arguments: - `x`: input value. - `y`: input value. - `z`: input value.

* * * ## Notice This package is part of [stdlib][stdlib], a standard library for JavaScript and Node.js, with an emphasis on numerical and scientific computing. The library provides a collection of robust, high performance libraries for mathematics, statistics, streams, utilities, and more. For more information on the project, filing bug reports and feature requests, and guidance on how to develop [stdlib][stdlib], see the main project [repository][stdlib]. #### Community [![Chat][chat-image]][chat-url] --- ## License See [LICENSE][stdlib-license]. ## Copyright Copyright © 2016-2025. The Stdlib [Authors][stdlib-authors].

Owner

  • Name: stdlib
  • Login: stdlib-js
  • Kind: organization

Standard library for JavaScript.

Citation (CITATION.cff)

cff-version: 1.2.0
title: stdlib
message: >-
  If you use this software, please cite it using the
  metadata from this file.

type: software

authors:
  - name: The Stdlib Authors
    url: https://github.com/stdlib-js/stdlib/graphs/contributors

repository-code: https://github.com/stdlib-js/stdlib
url: https://stdlib.io

abstract: |
  Standard library for JavaScript and Node.js.

keywords:
  - JavaScript
  - Node.js
  - TypeScript
  - standard library
  - scientific computing
  - numerical computing
  - statistical computing

license: Apache-2.0 AND BSL-1.0

date-released: 2016

GitHub Events

Total
  • Push event: 14
Last Year
  • Push event: 14

Committers

Last synced: about 2 years ago

All Time
  • Total Commits: 51
  • Total Committers: 1
  • Avg Commits per committer: 51.0
  • Development Distribution Score (DDS): 0.0
Past Year
  • Commits: 16
  • Committers: 1
  • Avg Commits per committer: 16.0
  • Development Distribution Score (DDS): 0.0
Top Committers
Name Email Commits
stdlib-bot n****y@s****o 51
Committer Domains (Top 20 + Academic)

Issues and Pull Requests

Last synced: 6 months ago

All Time
  • Total issues: 0
  • Total pull requests: 0
  • Average time to close issues: N/A
  • Average time to close pull requests: N/A
  • Total issue authors: 0
  • Total pull request authors: 0
  • Average comments per issue: 0
  • Average comments per pull request: 0
  • Merged pull requests: 0
  • Bot issues: 0
  • Bot pull requests: 0
Past Year
  • Issues: 0
  • Pull requests: 0
  • Average time to close issues: N/A
  • Average time to close pull requests: N/A
  • Issue authors: 0
  • Pull request authors: 0
  • Average comments per issue: 0
  • Average comments per pull request: 0
  • Merged pull requests: 0
  • Bot issues: 0
  • Bot pull requests: 0
Top Authors
Issue Authors
Pull Request Authors
Top Labels
Issue Labels
Pull Request Labels

Packages

  • Total packages: 1
  • Total downloads:
    • npm 563 last-month
  • Total dependent packages: 7
  • Total dependent repositories: 4
  • Total versions: 13
  • Total maintainers: 4
npmjs.org: @stdlib/math-base-napi-ternary

C APIs for registering a Node-API module exporting an interface for invoking a ternary numerical function.

  • Homepage: https://stdlib.io
  • License: Apache-2.0
  • Latest release: 0.3.0
    published over 1 year ago
  • Versions: 13
  • Dependent Packages: 7
  • Dependent Repositories: 4
  • Downloads: 563 Last month
Rankings
Dependent packages count: 2.8%
Dependent repos count: 5.6%
Downloads: 6.3%
Average: 8.9%
Stargazers count: 14.5%
Forks count: 15.4%
Funding
  • type: opencollective
  • url: https://opencollective.com/stdlib
Last synced: 6 months ago

Dependencies

package.json npm
  • @stdlib/assert-is-browser ^0.0.x development
  • @stdlib/bench ^0.0.x development
  • @stdlib/math-base-assert-is-nan ^0.0.x development
  • @stdlib/utils-try-require ^0.0.x development
  • istanbul ^0.4.1 development
  • tap-spec 5.x.x development
  • tape git+https://github.com/kgryte/tape.git#fix/globby development
  • @stdlib/utils-library-manifest ^0.0.x
.github/workflows/benchmark.yml actions
  • actions/checkout v3 composite
  • actions/setup-node v3 composite
.github/workflows/cancel.yml actions
  • styfle/cancel-workflow-action 0.11.0 composite
.github/workflows/close_pull_requests.yml actions
  • superbrothers/close-pull-request v3 composite
.github/workflows/examples.yml actions
  • actions/checkout v3 composite
  • actions/setup-node v3 composite
.github/workflows/npm_downloads.yml actions
  • actions/checkout v3 composite
  • actions/setup-node v3 composite
  • actions/upload-artifact v3 composite
  • distributhor/workflow-webhook v3 composite
.github/workflows/publish.yml actions
  • JS-DevTools/npm-publish v1 composite
  • act10ns/slack v1 composite
  • actions/checkout v3 composite
  • actions/setup-node v3 composite
  • styfle/cancel-workflow-action 0.11.0 composite
.github/workflows/test.yml actions
  • act10ns/slack v1 composite
  • actions/checkout v3 composite
  • actions/setup-node v3 composite
.github/workflows/test_coverage.yml actions
  • act10ns/slack v1 composite
  • actions/checkout v3 composite
  • actions/setup-node v3 composite
  • codecov/codecov-action v3 composite
  • distributhor/workflow-webhook v3 composite
.github/workflows/test_install.yml actions
  • act10ns/slack v1 composite
  • actions/checkout v3 composite
  • actions/setup-node v3 composite