@jdeighan/coffee-utils 7.0.37 → 7.0.40

Sign up to get free protection for your applications and to get access to all the features.
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@jdeighan/coffee-utils",
3
3
  "type": "module",
4
- "version": "7.0.37",
4
+ "version": "7.0.40",
5
5
  "description": "A set of utility functions for CoffeeScript",
6
6
  "main": "coffee_utils.js",
7
7
  "exports": {
@@ -7,6 +7,18 @@ LOG = (lArgs...) -> console.log lArgs... # synonym for console.log()
7
7
 
8
8
  export doHaltOnError = false
9
9
 
10
+ # ---------------------------------------------------------------------------
11
+ # TEMP!!!!!
12
+
13
+ export isComment = (line) ->
14
+
15
+ lMatches = line.match(///^
16
+ \s*
17
+ \#
18
+ (\s|$)
19
+ ///)
20
+ return defined(lMatches)
21
+
10
22
  # ---------------------------------------------------------------------------
11
23
 
12
24
  export haltOnError = () ->
@@ -15,6 +15,14 @@ LOG = function(...lArgs) {
15
15
 
16
16
  export var doHaltOnError = false;
17
17
 
18
+ // ---------------------------------------------------------------------------
19
+ // TEMP!!!!!
20
+ export var isComment = function(line) {
21
+ var lMatches;
22
+ lMatches = line.match(/^\s*\#(\s|$)/);
23
+ return defined(lMatches);
24
+ };
25
+
18
26
  // ---------------------------------------------------------------------------
19
27
  export var haltOnError = function() {
20
28
  return doHaltOnError = true;
@@ -22,8 +22,10 @@ export LOG = (lArgs...) ->
22
22
  [label, item] = lArgs
23
23
  if lArgs.length > 1
24
24
  # --- There's both a label and an item
25
- if ! item?
25
+ if (item == undef)
26
26
  console.log "#{label}: UNDEFINED"
27
+ else if (item == null)
28
+ console.log "#{label}: NULL"
27
29
  else
28
30
  console.log sep_dash
29
31
  console.log "#{label}:"
@@ -152,6 +154,8 @@ export logItem = (label, item, hOptions={}) ->
152
154
 
153
155
  if (item == undef)
154
156
  putstr "#{prefix}#{labelStr}undef"
157
+ else if (item == null)
158
+ putstr "#{prefix}#{labelStr}null"
155
159
  else if isString(item)
156
160
  if (item.length <= maxOneLine)
157
161
  putstr "#{prefix}#{labelStr}'#{escapeStr(item)}'"
package/src/log_utils.js CHANGED
@@ -39,8 +39,11 @@ export var LOG = function(...lArgs) {
39
39
  var item, label;
40
40
  [label, item] = lArgs;
41
41
  if (lArgs.length > 1) {
42
- if (item == null) {
42
+ // --- There's both a label and an item
43
+ if (item === undef) {
43
44
  console.log(`${label}: UNDEFINED`);
45
+ } else if (item === null) {
46
+ console.log(`${label}: NULL`);
44
47
  } else {
45
48
  console.log(sep_dash);
46
49
  console.log(`${label}:`);
@@ -168,6 +171,8 @@ export var logItem = function(label, item, hOptions = {}) {
168
171
  labelStr = label ? `${label} = ` : "";
169
172
  if (item === undef) {
170
173
  putstr(`${prefix}${labelStr}undef`);
174
+ } else if (item === null) {
175
+ putstr(`${prefix}${labelStr}null`);
171
176
  } else if (isString(item)) {
172
177
  if (item.length <= maxOneLine) {
173
178
  putstr(`${prefix}${labelStr}'${escapeStr(item)}'`);