stringweaver 1.3.1 → 1.3.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/README.md +12 -3
- package/package.json +3 -3
package/README.md
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
<div align="center">
|
|
2
|
-
<a href="https://bundlephobia.com/package/stringweaver" rel="nofollow">
|
|
3
|
-
<img src="https://badgen.net/bundlephobia/min/stringweaver"></a>
|
|
2
|
+
<!-- <a href="https://bundlephobia.com/package/stringweaver" rel="nofollow">
|
|
3
|
+
<img src="https://badgen.net/bundlephobia/min/stringweaver"></a> bundlephobia is broken! -->
|
|
4
4
|
<a target="_blank" href="https://www.npmjs.com/package/stringweaver"><img src="https://img.shields.io/npm/v/stringweaver.svg?labelColor=cb3837&logo=npm&color=dcfdd9"></a>
|
|
5
5
|
</div>
|
|
6
6
|
|
|
@@ -18,7 +18,16 @@ A constructor to create *mutable* strings.
|
|
|
18
18
|
- instances can use/chain native String getters/methods (e.g. `length`, `split`)
|
|
19
19
|
- 100% test coverage
|
|
20
20
|
|
|
21
|
-
|
|
21
|
+
### Repository moved
|
|
22
|
+
The repository is moved to [Codeberg](https://codeberg.org/KooiInc/js-stringweaver).
|
|
23
|
+
|
|
24
|
+
For now it is kept in sync with the original repository @[Github](https://github.com/KooiInc/js-stringweaver).
|
|
25
|
+
|
|
26
|
+
Depending on prospective USA/Microsoft/Github policies the Github version maybe discontinued in the future.
|
|
27
|
+
In other words, starting july 10 2025 the Codeberg repository is *authorative*.
|
|
28
|
+
|
|
29
|
+
**<a href="https://kooiinc.codeberg.page/js-stringweaver/Examples/">Demonstration / Documentation</a>**.
|
|
30
|
+
**Idem [@Github](https://kooiinc.github.io/js-stringweaver/Examples)**
|
|
22
31
|
|
|
23
32
|
### Install module
|
|
24
33
|
Use `npm install stringweaver` to install the module locally.
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "stringweaver",
|
|
3
3
|
"type": "module",
|
|
4
|
-
"version": "1.3.
|
|
4
|
+
"version": "1.3.2",
|
|
5
5
|
"private": false,
|
|
6
6
|
"main": "./index.js",
|
|
7
7
|
"sideEffects": false,
|
|
@@ -22,9 +22,9 @@
|
|
|
22
22
|
"license": "MIT",
|
|
23
23
|
"repository": {
|
|
24
24
|
"type": "git",
|
|
25
|
-
"url": "
|
|
25
|
+
"url": "https://codeberg.org/KooiInc/js-stringweaver.git"
|
|
26
26
|
},
|
|
27
27
|
"bugs": {
|
|
28
|
-
"url": "https://
|
|
28
|
+
"url": "https://codeberg.org/KooiInc/js-stringweaver/issues"
|
|
29
29
|
}
|
|
30
30
|
}
|