@stdlib/number-float64-base-signbit 0.2.3 → 0.2.4

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/NOTICE CHANGED
@@ -1 +1 @@
1
- Copyright (c) 2016-2024 The Stdlib Authors.
1
+ Copyright (c) 2016-2026 The Stdlib Authors.
package/README.md CHANGED
@@ -101,7 +101,7 @@ for ( i = 0; i < 100; i++ ) {
101
101
 
102
102
  <!-- /.examples -->
103
103
 
104
- <!-- C interface documentation. -->
104
+ <!-- C interface documentation. -->
105
105
 
106
106
  * * *
107
107
 
@@ -229,7 +229,7 @@ See [LICENSE][stdlib-license].
229
229
 
230
230
  ## Copyright
231
231
 
232
- Copyright &copy; 2016-2024. The Stdlib [Authors][stdlib-authors].
232
+ Copyright &copy; 2016-2026. The Stdlib [Authors][stdlib-authors].
233
233
 
234
234
  </section>
235
235
 
@@ -242,8 +242,8 @@ Copyright &copy; 2016-2024. The Stdlib [Authors][stdlib-authors].
242
242
  [npm-image]: http://img.shields.io/npm/v/@stdlib/number-float64-base-signbit.svg
243
243
  [npm-url]: https://npmjs.org/package/@stdlib/number-float64-base-signbit
244
244
 
245
- [test-image]: https://github.com/stdlib-js/number-float64-base-signbit/actions/workflows/test.yml/badge.svg?branch=v0.2.3
246
- [test-url]: https://github.com/stdlib-js/number-float64-base-signbit/actions/workflows/test.yml?query=branch:v0.2.3
245
+ [test-image]: https://github.com/stdlib-js/number-float64-base-signbit/actions/workflows/test.yml/badge.svg?branch=v0.2.4
246
+ [test-url]: https://github.com/stdlib-js/number-float64-base-signbit/actions/workflows/test.yml?query=branch:v0.2.4
247
247
 
248
248
  [coverage-image]: https://img.shields.io/codecov/c/github/stdlib-js/number-float64-base-signbit/main.svg
249
249
  [coverage-url]: https://codecov.io/github/stdlib-js/number-float64-base-signbit?branch=main
@@ -255,8 +255,8 @@ Copyright &copy; 2016-2024. The Stdlib [Authors][stdlib-authors].
255
255
 
256
256
  -->
257
257
 
258
- [chat-image]: https://img.shields.io/gitter/room/stdlib-js/stdlib.svg
259
- [chat-url]: https://app.gitter.im/#/room/#stdlib-js_stdlib:gitter.im
258
+ [chat-image]: https://img.shields.io/badge/zulip-join_chat-brightgreen.svg
259
+ [chat-url]: https://stdlib.zulipchat.com
260
260
 
261
261
  [stdlib]: https://github.com/stdlib-js/stdlib
262
262
 
package/lib/native.js CHANGED
@@ -31,7 +31,7 @@ var addon = require( './../src/addon.node' );
31
31
  *
32
32
  * @private
33
33
  * @param {number} x - input value
34
- * @returns {boolean} - boolean indicating if sign bit is on or off
34
+ * @returns {boolean} boolean indicating if sign bit is on or off
35
35
  *
36
36
  * @example
37
37
  * var bool = signbit( 4.0 );
package/manifest.json CHANGED
@@ -1,40 +1,40 @@
1
1
  {
2
- "options": {},
3
- "fields": [
4
- {
5
- "field": "src",
6
- "resolve": true,
7
- "relative": true
8
- },
9
- {
10
- "field": "include",
11
- "resolve": true,
12
- "relative": true
13
- },
14
- {
15
- "field": "libraries",
16
- "resolve": false,
17
- "relative": false
18
- },
19
- {
20
- "field": "libpath",
21
- "resolve": true,
22
- "relative": false
23
- }
24
- ],
25
- "confs": [
26
- {
27
- "src": [
28
- "./src/main.c"
29
- ],
30
- "include": [
31
- "./include"
32
- ],
33
- "libraries": [],
34
- "libpath": [],
35
- "dependencies": [
36
- "@stdlib/number-float64-base-get-high-word"
37
- ]
38
- }
39
- ]
2
+ "options": {},
3
+ "fields": [
4
+ {
5
+ "field": "src",
6
+ "resolve": true,
7
+ "relative": true
8
+ },
9
+ {
10
+ "field": "include",
11
+ "resolve": true,
12
+ "relative": true
13
+ },
14
+ {
15
+ "field": "libraries",
16
+ "resolve": false,
17
+ "relative": false
18
+ },
19
+ {
20
+ "field": "libpath",
21
+ "resolve": true,
22
+ "relative": false
23
+ }
24
+ ],
25
+ "confs": [
26
+ {
27
+ "src": [
28
+ "./src/main.c"
29
+ ],
30
+ "include": [
31
+ "./include"
32
+ ],
33
+ "libraries": [],
34
+ "libpath": [],
35
+ "dependencies": [
36
+ "@stdlib/number-float64-base-get-high-word"
37
+ ]
38
+ }
39
+ ]
40
40
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@stdlib/number-float64-base-signbit",
3
- "version": "0.2.3",
3
+ "version": "0.2.4",
4
4
  "description": "Return a boolean indicating if the sign bit for a double-precision floating-point number is on (true) or off (false).",
5
5
  "license": "Apache-2.0",
6
6
  "author": {
@@ -33,8 +33,8 @@
33
33
  "url": "https://github.com/stdlib-js/stdlib/issues"
34
34
  },
35
35
  "dependencies": {
36
- "@stdlib/number-float64-base-get-high-word": "^0.2.1",
37
- "@stdlib/utils-library-manifest": "^0.2.2"
36
+ "@stdlib/number-float64-base-get-high-word": "^0.2.2",
37
+ "@stdlib/utils-library-manifest": "^0.2.3"
38
38
  },
39
39
  "devDependencies": {},
40
40
  "engines": {