@stdlib/assert-is-between 0.0.4 → 0.0.8
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 +35 -2
- package/package.json +1 -1
- package/CHANGELOG.md +0 -5
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
|
# isBetween
|
|
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 value is between two values.
|
|
26
26
|
|
|
@@ -151,6 +151,22 @@ for ( i = 0; i < 100; i++ ) {
|
|
|
151
151
|
|
|
152
152
|
<!-- /.examples -->
|
|
153
153
|
|
|
154
|
+
<!-- Section for related `stdlib` packages. Do not manually edit this section, as it is automatically populated. -->
|
|
155
|
+
|
|
156
|
+
<section class="related">
|
|
157
|
+
|
|
158
|
+
* * *
|
|
159
|
+
|
|
160
|
+
## See Also
|
|
161
|
+
|
|
162
|
+
- <span class="package-name">[`@stdlib/assert/is-between-array`][@stdlib/assert/is-between-array]</span><span class="delimiter">: </span><span class="description">test if a value is an array-like object where every element is between two values.</span>
|
|
163
|
+
|
|
164
|
+
</section>
|
|
165
|
+
|
|
166
|
+
<!-- /.related -->
|
|
167
|
+
|
|
168
|
+
<!-- Section for all links. Make sure to keep an empty line after the `section` element and another before the `/section` close. -->
|
|
169
|
+
|
|
154
170
|
|
|
155
171
|
<section class="main-repo" >
|
|
156
172
|
|
|
@@ -175,7 +191,7 @@ See [LICENSE][stdlib-license].
|
|
|
175
191
|
|
|
176
192
|
## Copyright
|
|
177
193
|
|
|
178
|
-
Copyright © 2016-
|
|
194
|
+
Copyright © 2016-2022. The Stdlib [Authors][stdlib-authors].
|
|
179
195
|
|
|
180
196
|
</section>
|
|
181
197
|
|
|
@@ -194,9 +210,20 @@ Copyright © 2016-2021. The Stdlib [Authors][stdlib-authors].
|
|
|
194
210
|
[coverage-image]: https://img.shields.io/codecov/c/github/stdlib-js/assert-is-between/main.svg
|
|
195
211
|
[coverage-url]: https://codecov.io/github/stdlib-js/assert-is-between?branch=main
|
|
196
212
|
|
|
213
|
+
<!--
|
|
214
|
+
|
|
197
215
|
[dependencies-image]: https://img.shields.io/david/stdlib-js/assert-is-between.svg
|
|
198
216
|
[dependencies-url]: https://david-dm.org/stdlib-js/assert-is-between/main
|
|
199
217
|
|
|
218
|
+
-->
|
|
219
|
+
|
|
220
|
+
[umd]: https://github.com/umdjs/umd
|
|
221
|
+
[es-module]: https://developer.mozilla.org/en-US/docs/Web/JavaScript/Guide/Modules
|
|
222
|
+
|
|
223
|
+
[deno-url]: https://github.com/stdlib-js/assert-is-between/tree/deno
|
|
224
|
+
[umd-url]: https://github.com/stdlib-js/assert-is-between/tree/umd
|
|
225
|
+
[esm-url]: https://github.com/stdlib-js/assert-is-between/tree/esm
|
|
226
|
+
|
|
200
227
|
[chat-image]: https://img.shields.io/gitter/room/stdlib-js/stdlib.svg
|
|
201
228
|
[chat-url]: https://gitter.im/stdlib-js/stdlib/
|
|
202
229
|
|
|
@@ -206,6 +233,12 @@ Copyright © 2016-2021. The Stdlib [Authors][stdlib-authors].
|
|
|
206
233
|
|
|
207
234
|
[stdlib-license]: https://raw.githubusercontent.com/stdlib-js/assert-is-between/main/LICENSE
|
|
208
235
|
|
|
236
|
+
<!-- <related-links> -->
|
|
237
|
+
|
|
238
|
+
[@stdlib/assert/is-between-array]: https://www.npmjs.com/package/@stdlib/assert-is-between-array
|
|
239
|
+
|
|
240
|
+
<!-- </related-links> -->
|
|
241
|
+
|
|
209
242
|
</section>
|
|
210
243
|
|
|
211
244
|
<!-- /.links -->
|
package/package.json
CHANGED