file-path-helper 1.4.2 → 1.4.5

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/.editorconfig CHANGED
@@ -1,12 +1,12 @@
1
- root = true
2
-
3
- [*]
4
- charset = utf-8
5
- end_of_line = lf
6
- indent_style = space
7
- indent_size = 2
8
- insert_final_newline = true
9
- trim_trailing_whitespace = true
10
-
11
- [*.md]
12
- trim_trailing_whitespace = false
1
+ root = true
2
+
3
+ [*]
4
+ charset = utf-8
5
+ end_of_line = lf
6
+ indent_style = space
7
+ indent_size = 2
8
+ insert_final_newline = true
9
+ trim_trailing_whitespace = true
10
+
11
+ [*.md]
12
+ trim_trailing_whitespace = false
package/.eslintrc.json CHANGED
@@ -1,18 +1,18 @@
1
- {
2
- "env": {
3
- "commonjs": true,
4
- "es6": true,
5
- "node": true,
6
- "jest": true
7
- },
8
- "extends": "eslint:recommended",
9
- "globals": {
10
- "Atomics": "readonly",
11
- "SharedArrayBuffer": "readonly"
12
- },
13
- "parserOptions": {
14
- "ecmaVersion": 2018
15
- },
16
- "rules": {
17
- }
18
- }
1
+ {
2
+ "env": {
3
+ "commonjs": true,
4
+ "es6": true,
5
+ "node": true,
6
+ "jest": true
7
+ },
8
+ "extends": "eslint:recommended",
9
+ "globals": {
10
+ "Atomics": "readonly",
11
+ "SharedArrayBuffer": "readonly"
12
+ },
13
+ "parserOptions": {
14
+ "ecmaVersion": 2018
15
+ },
16
+ "rules": {
17
+ }
18
+ }
package/CHANGELOG.md CHANGED
@@ -7,6 +7,19 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
7
7
 
8
8
  ## [Unreleased]
9
9
 
10
+ ## 1.4.5 - 2022-04-04
11
+
12
+ - Update dependencies.
13
+
14
+ ## 1.4.4 - 2022-02-01
15
+
16
+ - Handling [Control Codes](https://en.wikipedia.org/wiki/C0_and_C1_control_codes) in `sanitize` method.
17
+ - Update dependencies.
18
+
19
+ ## 1.4.3 - 2021-05-11
20
+
21
+ - Update dependencies.
22
+
10
23
  ## [1.4.0] - 2020-02-08
11
24
 
12
25
  - Added new array methods: `filter` and `chunks`. (fe6e6be7a41e8d864cae7d2120179d141c56cdc3)