@stdlib/assert-is-empty-array-like-object 0.1.0 → 0.2.0

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-2023 The Stdlib Authors.
1
+ Copyright (c) 2016-2024 The Stdlib Authors.
package/README.md CHANGED
@@ -129,6 +129,14 @@ bool = isEmptyArrayLikeObject( function noop() {} );
129
129
 
130
130
  <section class="related">
131
131
 
132
+ * * *
133
+
134
+ ## See Also
135
+
136
+ - <span class="package-name">[`@stdlib/assert-is-array-like-object`][@stdlib/assert/is-array-like-object]</span><span class="delimiter">: </span><span class="description">test if a value is an array-like object.</span>
137
+ - <span class="package-name">[`@stdlib/assert-is-empty-array`][@stdlib/assert/is-empty-array]</span><span class="delimiter">: </span><span class="description">test if a value is an empty array.</span>
138
+ - <span class="package-name">[`@stdlib/assert-is-empty-collection`][@stdlib/assert/is-empty-collection]</span><span class="delimiter">: </span><span class="description">test if a value is an empty collection.</span>
139
+
132
140
  </section>
133
141
 
134
142
  <!-- /.related -->
@@ -159,7 +167,7 @@ See [LICENSE][stdlib-license].
159
167
 
160
168
  ## Copyright
161
169
 
162
- Copyright &copy; 2016-2023. The Stdlib [Authors][stdlib-authors].
170
+ Copyright &copy; 2016-2024. The Stdlib [Authors][stdlib-authors].
163
171
 
164
172
  </section>
165
173
 
@@ -172,8 +180,8 @@ Copyright &copy; 2016-2023. The Stdlib [Authors][stdlib-authors].
172
180
  [npm-image]: http://img.shields.io/npm/v/@stdlib/assert-is-empty-array-like-object.svg
173
181
  [npm-url]: https://npmjs.org/package/@stdlib/assert-is-empty-array-like-object
174
182
 
175
- [test-image]: https://github.com/stdlib-js/assert-is-empty-array-like-object/actions/workflows/test.yml/badge.svg?branch=v0.1.0
176
- [test-url]: https://github.com/stdlib-js/assert-is-empty-array-like-object/actions/workflows/test.yml?query=branch:v0.1.0
183
+ [test-image]: https://github.com/stdlib-js/assert-is-empty-array-like-object/actions/workflows/test.yml/badge.svg?branch=v0.2.0
184
+ [test-url]: https://github.com/stdlib-js/assert-is-empty-array-like-object/actions/workflows/test.yml?query=branch:v0.2.0
177
185
 
178
186
  [coverage-image]: https://img.shields.io/codecov/c/github/stdlib-js/assert-is-empty-array-like-object/main.svg
179
187
  [coverage-url]: https://codecov.io/github/stdlib-js/assert-is-empty-array-like-object?branch=main
@@ -196,8 +204,11 @@ Copyright &copy; 2016-2023. The Stdlib [Authors][stdlib-authors].
196
204
  [es-module]: https://developer.mozilla.org/en-US/docs/Web/JavaScript/Guide/Modules
197
205
 
198
206
  [deno-url]: https://github.com/stdlib-js/assert-is-empty-array-like-object/tree/deno
207
+ [deno-readme]: https://github.com/stdlib-js/assert-is-empty-array-like-object/blob/deno/README.md
199
208
  [umd-url]: https://github.com/stdlib-js/assert-is-empty-array-like-object/tree/umd
209
+ [umd-readme]: https://github.com/stdlib-js/assert-is-empty-array-like-object/blob/umd/README.md
200
210
  [esm-url]: https://github.com/stdlib-js/assert-is-empty-array-like-object/tree/esm
211
+ [esm-readme]: https://github.com/stdlib-js/assert-is-empty-array-like-object/blob/esm/README.md
201
212
  [branches-url]: https://github.com/stdlib-js/assert-is-empty-array-like-object/blob/main/branches.md
202
213
 
203
214
  [stdlib-license]: https://raw.githubusercontent.com/stdlib-js/assert-is-empty-array-like-object/main/LICENSE
@@ -206,6 +217,12 @@ Copyright &copy; 2016-2023. The Stdlib [Authors][stdlib-authors].
206
217
 
207
218
  <!-- <related-links> -->
208
219
 
220
+ [@stdlib/assert/is-array-like-object]: https://www.npmjs.com/package/@stdlib/assert-is-array-like-object
221
+
222
+ [@stdlib/assert/is-empty-array]: https://www.npmjs.com/package/@stdlib/assert-is-empty-array
223
+
224
+ [@stdlib/assert/is-empty-collection]: https://www.npmjs.com/package/@stdlib/assert-is-empty-collection
225
+
209
226
  <!-- </related-links> -->
210
227
 
211
228
  </section>
package/SECURITY.md ADDED
@@ -0,0 +1,5 @@
1
+ # Security
2
+
3
+ > Policy for reporting security vulnerabilities.
4
+
5
+ See the security policy [in the main project repository](https://github.com/stdlib-js/stdlib/security).
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@stdlib/assert-is-empty-array-like-object",
3
- "version": "0.1.0",
3
+ "version": "0.2.0",
4
4
  "description": "Test if a value is an empty array-like object.",
5
5
  "license": "Apache-2.0",
6
6
  "author": {
@@ -38,12 +38,13 @@
38
38
  },
39
39
  "dependencies": {},
40
40
  "devDependencies": {
41
- "@stdlib/array-float64": "^0.0.6",
42
- "@stdlib/assert-is-boolean": "^0.0.8",
43
- "@stdlib/bench": "^0.0.12",
41
+ "@stdlib/array-float64": "^0.1.1",
42
+ "@stdlib/assert-is-boolean": "^0.1.1",
44
43
  "tape": "git+https://github.com/kgryte/tape.git#fix/globby",
45
44
  "istanbul": "^0.4.1",
46
- "tap-min": "git+https://github.com/Planeshifter/tap-min.git"
45
+ "tap-min": "git+https://github.com/Planeshifter/tap-min.git",
46
+ "@stdlib/bench-harness": "^0.1.2",
47
+ "@stdlib/bench": "^0.3.1"
47
48
  },
48
49
  "engines": {
49
50
  "node": ">=0.10.0",
package/CITATION.cff DELETED
@@ -1,30 +0,0 @@
1
- cff-version: 1.2.0
2
- title: stdlib
3
- message: >-
4
- If you use this software, please cite it using the
5
- metadata from this file.
6
-
7
- type: software
8
-
9
- authors:
10
- - name: The Stdlib Authors
11
- url: https://github.com/stdlib-js/stdlib/graphs/contributors
12
-
13
- repository-code: https://github.com/stdlib-js/stdlib
14
- url: https://stdlib.io
15
-
16
- abstract: |
17
- Standard library for JavaScript and Node.js.
18
-
19
- keywords:
20
- - JavaScript
21
- - Node.js
22
- - TypeScript
23
- - standard library
24
- - scientific computing
25
- - numerical computing
26
- - statistical computing
27
-
28
- license: Apache-2.0 AND BSL-1.0
29
-
30
- date-released: 2016