supertape 10.9.0 → 10.10.0

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/ChangeLog CHANGED
@@ -1,3 +1,8 @@
1
+ 2025.01.05, v10.10.0
2
+
3
+ feature:
4
+ - 9f505eb supertape: operators: ^
5
+
1
6
  2025.01.05, v10.9.0
2
7
 
3
8
  feature:
package/lib/operators.mjs CHANGED
@@ -6,6 +6,7 @@ const {entries} = Object;
6
6
  const isAsync = (a) => a[Symbol.toStringTag] === 'AsyncFunction';
7
7
 
8
8
  const encode = (a) => a
9
+ .replace('^', '\\^')
9
10
  .replace(')', '\\)')
10
11
  .replace('(', '\\(');
11
12
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "supertape",
3
- "version": "10.9.0",
3
+ "version": "10.10.0",
4
4
  "author": "coderaiser <mnemonic.enemy@gmail.com> (https://github.com/coderaiser)",
5
5
  "description": "📼 Supertape simplest high speed test runner with superpowers",
6
6
  "homepage": "http://github.com/coderaiser/supertape",