@stdlib/math-base-assert-is-nonpositive-integer 0.0.6 → 0.0.7
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 +1 -1
- package/README.md +44 -2
- package/package.json +1 -1
package/NOTICE
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
Copyright (c) 2016-
|
|
1
|
+
Copyright (c) 2016-2022 The Stdlib Authors.
|
package/README.md
CHANGED
|
@@ -20,7 +20,7 @@ limitations under the License.
|
|
|
20
20
|
|
|
21
21
|
# isNonPositiveInteger
|
|
22
22
|
|
|
23
|
-
[![NPM version][npm-image]][npm-url] [![Build Status][test-image]][test-url] [![Coverage Status][coverage-image]][coverage-url] [![dependencies][dependencies-image]][dependencies-url]
|
|
23
|
+
[![NPM version][npm-image]][npm-url] [![Build Status][test-image]][test-url] [![Coverage Status][coverage-image]][coverage-url] <!-- [![dependencies][dependencies-image]][dependencies-url] -->
|
|
24
24
|
|
|
25
25
|
> Test if a finite [double-precision floating-point number][ieee754] is a nonpositive integer.
|
|
26
26
|
|
|
@@ -122,6 +122,25 @@ bool = isNonPositiveInteger( NaN );
|
|
|
122
122
|
|
|
123
123
|
<!-- /.examples -->
|
|
124
124
|
|
|
125
|
+
<!-- Section for related `stdlib` packages. Do not manually edit this section, as it is automatically populated. -->
|
|
126
|
+
|
|
127
|
+
<section class="related">
|
|
128
|
+
|
|
129
|
+
* * *
|
|
130
|
+
|
|
131
|
+
## See Also
|
|
132
|
+
|
|
133
|
+
- <span class="package-name">[`@stdlib/math/base/assert/is-integer`][@stdlib/math/base/assert/is-integer]</span><span class="delimiter">: </span><span class="description">test if a finite double-precision floating-point number is an integer.</span>
|
|
134
|
+
- <span class="package-name">[`@stdlib/math/base/assert/is-negative-integer`][@stdlib/math/base/assert/is-negative-integer]</span><span class="delimiter">: </span><span class="description">test if a finite double-precision floating-point number is a negative integer.</span>
|
|
135
|
+
- <span class="package-name">[`@stdlib/math/base/assert/is-nonnegative-integer`][@stdlib/math/base/assert/is-nonnegative-integer]</span><span class="delimiter">: </span><span class="description">test if a finite double-precision floating-point number is a nonnegative integer.</span>
|
|
136
|
+
- <span class="package-name">[`@stdlib/math/base/assert/is-positive-integer`][@stdlib/math/base/assert/is-positive-integer]</span><span class="delimiter">: </span><span class="description">test if a finite double-precision floating-point number is a positive integer.</span>
|
|
137
|
+
|
|
138
|
+
</section>
|
|
139
|
+
|
|
140
|
+
<!-- /.related -->
|
|
141
|
+
|
|
142
|
+
<!-- Section for all links. Make sure to keep an empty line after the `section` element and another before the `/section` close. -->
|
|
143
|
+
|
|
125
144
|
|
|
126
145
|
<section class="main-repo" >
|
|
127
146
|
|
|
@@ -146,7 +165,7 @@ See [LICENSE][stdlib-license].
|
|
|
146
165
|
|
|
147
166
|
## Copyright
|
|
148
167
|
|
|
149
|
-
Copyright © 2016-
|
|
168
|
+
Copyright © 2016-2022. The Stdlib [Authors][stdlib-authors].
|
|
150
169
|
|
|
151
170
|
</section>
|
|
152
171
|
|
|
@@ -165,9 +184,20 @@ Copyright © 2016-2021. The Stdlib [Authors][stdlib-authors].
|
|
|
165
184
|
[coverage-image]: https://img.shields.io/codecov/c/github/stdlib-js/math-base-assert-is-nonpositive-integer/main.svg
|
|
166
185
|
[coverage-url]: https://codecov.io/github/stdlib-js/math-base-assert-is-nonpositive-integer?branch=main
|
|
167
186
|
|
|
187
|
+
<!--
|
|
188
|
+
|
|
168
189
|
[dependencies-image]: https://img.shields.io/david/stdlib-js/math-base-assert-is-nonpositive-integer.svg
|
|
169
190
|
[dependencies-url]: https://david-dm.org/stdlib-js/math-base-assert-is-nonpositive-integer/main
|
|
170
191
|
|
|
192
|
+
-->
|
|
193
|
+
|
|
194
|
+
[umd]: https://github.com/umdjs/umd
|
|
195
|
+
[es-module]: https://developer.mozilla.org/en-US/docs/Web/JavaScript/Guide/Modules
|
|
196
|
+
|
|
197
|
+
[deno-url]: https://github.com/stdlib-js/math-base-assert-is-nonpositive-integer/tree/deno
|
|
198
|
+
[umd-url]: https://github.com/stdlib-js/math-base-assert-is-nonpositive-integer/tree/umd
|
|
199
|
+
[esm-url]: https://github.com/stdlib-js/math-base-assert-is-nonpositive-integer/tree/esm
|
|
200
|
+
|
|
171
201
|
[chat-image]: https://img.shields.io/gitter/room/stdlib-js/stdlib.svg
|
|
172
202
|
[chat-url]: https://gitter.im/stdlib-js/stdlib/
|
|
173
203
|
|
|
@@ -179,6 +209,18 @@ Copyright © 2016-2021. The Stdlib [Authors][stdlib-authors].
|
|
|
179
209
|
|
|
180
210
|
[ieee754]: https://en.wikipedia.org/wiki/IEEE_754-1985
|
|
181
211
|
|
|
212
|
+
<!-- <related-links> -->
|
|
213
|
+
|
|
214
|
+
[@stdlib/math/base/assert/is-integer]: https://www.npmjs.com/package/@stdlib/math-base-assert-is-integer
|
|
215
|
+
|
|
216
|
+
[@stdlib/math/base/assert/is-negative-integer]: https://www.npmjs.com/package/@stdlib/math-base-assert-is-negative-integer
|
|
217
|
+
|
|
218
|
+
[@stdlib/math/base/assert/is-nonnegative-integer]: https://www.npmjs.com/package/@stdlib/math-base-assert-is-nonnegative-integer
|
|
219
|
+
|
|
220
|
+
[@stdlib/math/base/assert/is-positive-integer]: https://www.npmjs.com/package/@stdlib/math-base-assert-is-positive-integer
|
|
221
|
+
|
|
222
|
+
<!-- </related-links> -->
|
|
223
|
+
|
|
182
224
|
</section>
|
|
183
225
|
|
|
184
226
|
<!-- /.links -->
|
package/package.json
CHANGED