iterable-string-interceptor 2.2.2 → 2.2.4

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/LICENSE CHANGED
@@ -1,4 +1,4 @@
1
- Copyright (c) 2018-2022 by arlac77
1
+ Copyright (c) 2018-2023 by arlac77
2
2
  All rights reserved.
3
3
 
4
4
  Redistribution and use in source and binary forms, with or without
package/package.json CHANGED
@@ -1,10 +1,9 @@
1
1
  {
2
2
  "name": "iterable-string-interceptor",
3
- "version": "2.2.2",
3
+ "version": "2.2.4",
4
4
  "publishConfig": {
5
5
  "access": "public"
6
6
  },
7
- "sideEffects": false,
8
7
  "exports": {
9
8
  ".": "./src/iterable-string-interceptor.mjs"
10
9
  },
@@ -30,18 +29,18 @@
30
29
  "lint:docs": "documentation lint ./src/**/*.mjs"
31
30
  },
32
31
  "devDependencies": {
33
- "ava": "^5.1.0",
34
- "browser-ava": "^1.3.4",
35
- "c8": "^7.12.0",
36
- "documentation": "^14.0.0",
37
- "semantic-release": "^19.0.5"
32
+ "ava": "^5.2.0",
33
+ "browser-ava": "^1.3.38",
34
+ "c8": "^7.13.0",
35
+ "documentation": "^14.0.1",
36
+ "semantic-release": "^21.0.2"
38
37
  },
39
38
  "engines": {
40
- "node": ">=16.18.1"
39
+ "node": ">=16.20.0"
41
40
  },
42
41
  "repository": {
43
42
  "type": "git",
44
- "url": "https://github.com/arlac77/iterable-string-interceptor.git"
43
+ "url": "https://github.com/arlac77/iterable-string-interceptor"
45
44
  },
46
45
  "bugs": {
47
46
  "url": "https://github.com/arlac77/iterable-string-interceptor/issues"
@@ -99,7 +99,7 @@ export async function* iterableStringInterceptor(
99
99
  }
100
100
  } while (chunk.length > 0);
101
101
  }
102
- if (buffer != undefined) {
102
+ if (buffer !== undefined) {
103
103
  yield buffer;
104
104
  }
105
105
  }