string-filters 0.3.5 → 0.3.6
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 +2 -2
- package/dist/string-filters.js +1 -1
- package/dist/string-filters.umd.cjs +1 -1
- package/package.json +2 -1
package/README.md
CHANGED
|
@@ -41,10 +41,10 @@ npm install string-filters
|
|
|
41
41
|
|
|
42
42
|
### Manually
|
|
43
43
|
|
|
44
|
-
[Download](https://github.com/tarkhov/js-string-filters/releases/download/v0.
|
|
44
|
+
[Download](https://github.com/tarkhov/js-string-filters/releases/download/v0.3.6/js-string-filters.zip) package and unpack it or use following commands:
|
|
45
45
|
|
|
46
46
|
```bash
|
|
47
|
-
wget https://github.com/tarkhov/js-string-filters/releases/download/v0.
|
|
47
|
+
wget https://github.com/tarkhov/js-string-filters/releases/download/v0.3.6/js-string-filters.zip
|
|
48
48
|
unzip js-string-filters.zip
|
|
49
49
|
```
|
|
50
50
|
|
package/dist/string-filters.js
CHANGED
package/package.json
CHANGED
|
@@ -1,11 +1,12 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "string-filters",
|
|
3
|
-
"version": "0.3.
|
|
3
|
+
"version": "0.3.6",
|
|
4
4
|
"description": "Fast native javascript string filters library.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"files": [
|
|
7
7
|
"dist"
|
|
8
8
|
],
|
|
9
|
+
"types": "./dist/types/main.d.ts",
|
|
9
10
|
"main": "./dist/string-filters.umd.cjs",
|
|
10
11
|
"module": "./dist/string-filters.js",
|
|
11
12
|
"exports": {
|