@stdlib/string-to-grapheme-cluster-iterator 0.2.1 → 0.2.2
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 +6 -6
- package/docs/types/index.d.ts +1 -1
- package/package.json +9 -26
package/NOTICE
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
Copyright (c) 2016-
|
|
1
|
+
Copyright (c) 2016-2026 The Stdlib Authors.
|
package/README.md
CHANGED
|
@@ -257,7 +257,7 @@ See [LICENSE][stdlib-license].
|
|
|
257
257
|
|
|
258
258
|
## Copyright
|
|
259
259
|
|
|
260
|
-
Copyright © 2016-
|
|
260
|
+
Copyright © 2016-2026. The Stdlib [Authors][stdlib-authors].
|
|
261
261
|
|
|
262
262
|
</section>
|
|
263
263
|
|
|
@@ -270,11 +270,11 @@ Copyright © 2016-2024. The Stdlib [Authors][stdlib-authors].
|
|
|
270
270
|
[npm-image]: http://img.shields.io/npm/v/@stdlib/string-to-grapheme-cluster-iterator.svg
|
|
271
271
|
[npm-url]: https://npmjs.org/package/@stdlib/string-to-grapheme-cluster-iterator
|
|
272
272
|
|
|
273
|
-
[test-image]: https://github.com/stdlib-js/string-to-grapheme-cluster-iterator/actions/workflows/test.yml/badge.svg?branch=v0.2.
|
|
274
|
-
[test-url]: https://github.com/stdlib-js/string-to-grapheme-cluster-iterator/actions/workflows/test.yml?query=branch:v0.2.
|
|
273
|
+
[test-image]: https://github.com/stdlib-js/string-to-grapheme-cluster-iterator/actions/workflows/test.yml/badge.svg?branch=v0.2.2
|
|
274
|
+
[test-url]: https://github.com/stdlib-js/string-to-grapheme-cluster-iterator/actions/workflows/test.yml?query=branch:v0.2.2
|
|
275
275
|
|
|
276
276
|
[coverage-image]: https://img.shields.io/codecov/c/github/stdlib-js/string-to-grapheme-cluster-iterator/main.svg
|
|
277
|
-
[coverage-url]: https://codecov.io/github/stdlib-js/string-to-grapheme-cluster-iterator?branch=
|
|
277
|
+
[coverage-url]: https://codecov.io/github/stdlib-js/string-to-grapheme-cluster-iterator?branch=main
|
|
278
278
|
|
|
279
279
|
<!--
|
|
280
280
|
|
|
@@ -283,8 +283,8 @@ Copyright © 2016-2024. The Stdlib [Authors][stdlib-authors].
|
|
|
283
283
|
|
|
284
284
|
-->
|
|
285
285
|
|
|
286
|
-
[chat-image]: https://img.shields.io/
|
|
287
|
-
[chat-url]: https://
|
|
286
|
+
[chat-image]: https://img.shields.io/badge/zulip-join_chat-brightgreen.svg
|
|
287
|
+
[chat-url]: https://stdlib.zulipchat.com
|
|
288
288
|
|
|
289
289
|
[stdlib]: https://github.com/stdlib-js/stdlib
|
|
290
290
|
|
package/docs/types/index.d.ts
CHANGED
|
@@ -73,7 +73,7 @@ type MapFunction = Nullary | Unary | Binary | Ternary;
|
|
|
73
73
|
* Returns an iterator which iterates over each grapheme cluster in a string.
|
|
74
74
|
*
|
|
75
75
|
* @param src - input value
|
|
76
|
-
* @param
|
|
76
|
+
* @param mapFcn - function to invoke for each iterated value
|
|
77
77
|
* @param thisArg - execution context
|
|
78
78
|
* @returns iterator
|
|
79
79
|
*
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@stdlib/string-to-grapheme-cluster-iterator",
|
|
3
|
-
"version": "0.2.
|
|
3
|
+
"version": "0.2.2",
|
|
4
4
|
"description": "Create an iterator which iterates over grapheme clusters.",
|
|
5
5
|
"license": "Apache-2.0",
|
|
6
6
|
"author": {
|
|
@@ -15,19 +15,12 @@
|
|
|
15
15
|
],
|
|
16
16
|
"main": "./lib",
|
|
17
17
|
"directories": {
|
|
18
|
-
"benchmark": "./benchmark",
|
|
19
18
|
"doc": "./docs",
|
|
20
|
-
"example": "./examples",
|
|
21
19
|
"lib": "./lib",
|
|
22
|
-
"
|
|
20
|
+
"dist": "./dist"
|
|
23
21
|
},
|
|
24
22
|
"types": "./docs/types",
|
|
25
|
-
"scripts": {
|
|
26
|
-
"test": "make test",
|
|
27
|
-
"test-cov": "make test-cov",
|
|
28
|
-
"examples": "make examples",
|
|
29
|
-
"benchmark": "make benchmark"
|
|
30
|
-
},
|
|
23
|
+
"scripts": {},
|
|
31
24
|
"homepage": "https://stdlib.io",
|
|
32
25
|
"repository": {
|
|
33
26
|
"type": "git",
|
|
@@ -37,25 +30,15 @@
|
|
|
37
30
|
"url": "https://github.com/stdlib-js/stdlib/issues"
|
|
38
31
|
},
|
|
39
32
|
"dependencies": {
|
|
40
|
-
"@stdlib/assert-is-function": "^0.2.
|
|
41
|
-
"@stdlib/assert-is-string": "^0.2.
|
|
42
|
-
"@stdlib/string-format": "^0.2.
|
|
33
|
+
"@stdlib/assert-is-function": "^0.2.3",
|
|
34
|
+
"@stdlib/assert-is-string": "^0.2.3",
|
|
35
|
+
"@stdlib/string-format": "^0.2.3",
|
|
43
36
|
"@stdlib/string-next-grapheme-cluster-break": "^0.2.2",
|
|
44
37
|
"@stdlib/symbol-iterator": "^0.2.2",
|
|
45
|
-
"@stdlib/
|
|
46
|
-
"@stdlib/
|
|
47
|
-
"@stdlib/error-tools-fmtprodmsg": "^0.2.2"
|
|
48
|
-
},
|
|
49
|
-
"devDependencies": {
|
|
50
|
-
"@stdlib/assert-is-iterator-like": "^0.2.2",
|
|
51
|
-
"@stdlib/string-num-grapheme-clusters": "^0.2.2",
|
|
52
|
-
"@stdlib/utils-noop": "^0.2.2",
|
|
53
|
-
"proxyquire": "^2.0.0",
|
|
54
|
-
"tape": "git+https://github.com/kgryte/tape.git#fix/globby",
|
|
55
|
-
"istanbul": "^0.4.1",
|
|
56
|
-
"tap-min": "git+https://github.com/Planeshifter/tap-min.git",
|
|
57
|
-
"@stdlib/bench-harness": "^0.2.1"
|
|
38
|
+
"@stdlib/utils-define-nonenumerable-read-only-property": "^0.2.3",
|
|
39
|
+
"@stdlib/error-tools-fmtprodmsg": "^0.2.3"
|
|
58
40
|
},
|
|
41
|
+
"devDependencies": {},
|
|
59
42
|
"engines": {
|
|
60
43
|
"node": ">=0.10.0",
|
|
61
44
|
"npm": ">2.7.0"
|