@stdlib/math-base-assert-is-probability 0.2.2 → 0.2.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +2 -2
- package/package.json +1 -1
- package/src/addon.c +0 -2
package/README.md
CHANGED
|
@@ -235,8 +235,8 @@ Copyright © 2016-2024. The Stdlib [Authors][stdlib-authors].
|
|
|
235
235
|
[npm-image]: http://img.shields.io/npm/v/@stdlib/math-base-assert-is-probability.svg
|
|
236
236
|
[npm-url]: https://npmjs.org/package/@stdlib/math-base-assert-is-probability
|
|
237
237
|
|
|
238
|
-
[test-image]: https://github.com/stdlib-js/math-base-assert-is-probability/actions/workflows/test.yml/badge.svg?branch=v0.2.
|
|
239
|
-
[test-url]: https://github.com/stdlib-js/math-base-assert-is-probability/actions/workflows/test.yml?query=branch:v0.2.
|
|
238
|
+
[test-image]: https://github.com/stdlib-js/math-base-assert-is-probability/actions/workflows/test.yml/badge.svg?branch=v0.2.3
|
|
239
|
+
[test-url]: https://github.com/stdlib-js/math-base-assert-is-probability/actions/workflows/test.yml?query=branch:v0.2.3
|
|
240
240
|
|
|
241
241
|
[coverage-image]: https://img.shields.io/codecov/c/github/stdlib-js/math-base-assert-is-probability/main.svg
|
|
242
242
|
[coverage-url]: https://codecov.io/github/stdlib-js/math-base-assert-is-probability?branch=main
|
package/package.json
CHANGED
package/src/addon.c
CHANGED
|
@@ -24,7 +24,6 @@
|
|
|
24
24
|
/**
|
|
25
25
|
* Receives JavaScript callback invocation data.
|
|
26
26
|
*
|
|
27
|
-
* @private
|
|
28
27
|
* @param env environment under which the function is invoked
|
|
29
28
|
* @param info callback data
|
|
30
29
|
* @return Node-API value
|
|
@@ -75,7 +74,6 @@ static napi_value addon( napi_env env, napi_callback_info info ) {
|
|
|
75
74
|
/**
|
|
76
75
|
* Initializes a Node-API module.
|
|
77
76
|
*
|
|
78
|
-
* @private
|
|
79
77
|
* @param env environment under which the function is invoked
|
|
80
78
|
* @param exports exports object
|
|
81
79
|
* @return main export
|