@jdeighan/coffee-utils 7.0.48 → 7.0.49

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
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@jdeighan/coffee-utils",
3
3
  "type": "module",
4
- "version": "7.0.48",
4
+ "version": "7.0.49",
5
5
  "description": "A set of utility functions for CoffeeScript",
6
6
  "main": "coffee_utils.js",
7
7
  "exports": {
@@ -161,6 +161,7 @@ export debug = (lArgs...) ->
161
161
  LOG "debug('#{escapeStr(label)}') - 1 arg"
162
162
  else
163
163
  LOG "debug('#{escapeStr(label)}', #{typeof item}) - 2 args"
164
+ LOG "debugging flag = #{OL(debugging)}"
164
165
 
165
166
  # --- We always need to manipulate the stack when we encounter
166
167
  # either "enter X" or "return from X", so we can't short-circuit
@@ -174,6 +174,7 @@ export var debug = function(...lArgs) {
174
174
  } else {
175
175
  LOG(`debug('${escapeStr(label)}', ${typeof item}) - 2 args`);
176
176
  }
177
+ LOG(`debugging flag = ${OL(debugging)}`);
177
178
  }
178
179
  // --- We always need to manipulate the stack when we encounter
179
180
  // either "enter X" or "return from X", so we can't short-circuit