@stdlib/assert-is-iterable-like 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
@@ -145,7 +145,7 @@ See [LICENSE][stdlib-license].
145
145
 
146
146
  ## Copyright
147
147
 
148
- Copyright © 2016-2023. The Stdlib [Authors][stdlib-authors].
148
+ Copyright © 2016-2024. The Stdlib [Authors][stdlib-authors].
149
149
 
150
150
  </section>
151
151
 
@@ -158,8 +158,8 @@ Copyright &copy; 2016-2023. The Stdlib [Authors][stdlib-authors].
158
158
  [npm-image]: http://img.shields.io/npm/v/@stdlib/assert-is-iterable-like.svg
159
159
  [npm-url]: https://npmjs.org/package/@stdlib/assert-is-iterable-like
160
160
 
161
- [test-image]: https://github.com/stdlib-js/assert-is-iterable-like/actions/workflows/test.yml/badge.svg?branch=v0.1.0
162
- [test-url]: https://github.com/stdlib-js/assert-is-iterable-like/actions/workflows/test.yml?query=branch:v0.1.0
161
+ [test-image]: https://github.com/stdlib-js/assert-is-iterable-like/actions/workflows/test.yml/badge.svg?branch=v0.2.0
162
+ [test-url]: https://github.com/stdlib-js/assert-is-iterable-like/actions/workflows/test.yml?query=branch:v0.2.0
163
163
 
164
164
  [coverage-image]: https://img.shields.io/codecov/c/github/stdlib-js/assert-is-iterable-like/main.svg
165
165
  [coverage-url]: https://codecov.io/github/stdlib-js/assert-is-iterable-like?branch=main
@@ -182,8 +182,11 @@ Copyright &copy; 2016-2023. The Stdlib [Authors][stdlib-authors].
182
182
  [es-module]: https://developer.mozilla.org/en-US/docs/Web/JavaScript/Guide/Modules
183
183
 
184
184
  [deno-url]: https://github.com/stdlib-js/assert-is-iterable-like/tree/deno
185
+ [deno-readme]: https://github.com/stdlib-js/assert-is-iterable-like/blob/deno/README.md
185
186
  [umd-url]: https://github.com/stdlib-js/assert-is-iterable-like/tree/umd
187
+ [umd-readme]: https://github.com/stdlib-js/assert-is-iterable-like/blob/umd/README.md
186
188
  [esm-url]: https://github.com/stdlib-js/assert-is-iterable-like/tree/esm
189
+ [esm-readme]: https://github.com/stdlib-js/assert-is-iterable-like/blob/esm/README.md
187
190
  [branches-url]: https://github.com/stdlib-js/assert-is-iterable-like/blob/main/branches.md
188
191
 
189
192
  [stdlib-license]: https://raw.githubusercontent.com/stdlib-js/assert-is-iterable-like/main/LICENSE
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-iterable-like",
3
- "version": "0.1.0",
3
+ "version": "0.2.0",
4
4
  "description": "Test if a value is iterable-like.",
5
5
  "license": "Apache-2.0",
6
6
  "author": {
@@ -37,20 +37,21 @@
37
37
  "url": "https://github.com/stdlib-js/stdlib/issues"
38
38
  },
39
39
  "dependencies": {
40
- "@stdlib/assert-has-iterator-symbol-support": "^0.1.0",
41
- "@stdlib/assert-is-function": "^0.1.0",
42
- "@stdlib/assert-is-iterator-like": "^0.1.0",
43
- "@stdlib/assert-is-primitive": "^0.1.0",
44
- "@stdlib/symbol-iterator": "^0.1.0",
45
- "@stdlib/utils-constant-function": "^0.1.0"
40
+ "@stdlib/assert-has-iterator-symbol-support": "^0.2.0",
41
+ "@stdlib/assert-is-function": "^0.2.0",
42
+ "@stdlib/assert-is-iterator-like": "^0.2.0",
43
+ "@stdlib/assert-is-primitive": "^0.2.0",
44
+ "@stdlib/symbol-iterator": "^0.2.0",
45
+ "@stdlib/utils-constant-function": "^0.2.0"
46
46
  },
47
47
  "devDependencies": {
48
- "@stdlib/assert-is-boolean": "^0.1.0",
49
- "@stdlib/bench": "^0.1.0",
48
+ "@stdlib/assert-is-boolean": "^0.1.1",
50
49
  "proxyquire": "^2.0.0",
51
50
  "tape": "git+https://github.com/kgryte/tape.git#fix/globby",
52
51
  "istanbul": "^0.4.1",
53
- "tap-min": "git+https://github.com/Planeshifter/tap-min.git"
52
+ "tap-min": "git+https://github.com/Planeshifter/tap-min.git",
53
+ "@stdlib/bench-harness": "^0.1.2",
54
+ "@stdlib/bench": "^0.3.1"
54
55
  },
55
56
  "engines": {
56
57
  "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