velocious 1.0.51 → 1.0.52

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/package.json CHANGED
@@ -3,7 +3,7 @@
3
3
  "velocious": "bin/velocious.js"
4
4
  },
5
5
  "name": "velocious",
6
- "version": "1.0.51",
6
+ "version": "1.0.52",
7
7
  "main": "index.js",
8
8
  "scripts": {
9
9
  "test": "VELOCIOUS_TEST_DIR=../ cd spec/dummy && npx velocious test",
@@ -0,0 +1,10 @@
1
+ function addTrackedStackToError(error) {
2
+ // Not supported
3
+ }
4
+
5
+ async function withTrackedStack(arg1, arg2) {
6
+ // Not supported
7
+ return await callback()
8
+ }
9
+
10
+ export {addTrackedStackToError, withTrackedStack}