@jdeighan/coffee-utils 7.0.30 → 7.0.31
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 +1 -1
- package/src/coffee_utils.coffee +2 -2
- package/src/coffee_utils.js +2 -2
- package/src/indent_utils.coffee +1 -1
- package/src/indent_utils.js +1 -1
package/package.json
CHANGED
package/src/coffee_utils.coffee
CHANGED
|
@@ -103,7 +103,7 @@ export hashHasKey = (x, key) ->
|
|
|
103
103
|
|
|
104
104
|
export isEmpty = (x) ->
|
|
105
105
|
|
|
106
|
-
if
|
|
106
|
+
if (x == undef) || (x == null)
|
|
107
107
|
return true
|
|
108
108
|
if isString(x)
|
|
109
109
|
return x.match(/^\s*$/)
|
|
@@ -112,7 +112,7 @@ export isEmpty = (x) ->
|
|
|
112
112
|
if isHash(x)
|
|
113
113
|
return Object.keys(x).length == 0
|
|
114
114
|
else
|
|
115
|
-
|
|
115
|
+
return false
|
|
116
116
|
|
|
117
117
|
# ---------------------------------------------------------------------------
|
|
118
118
|
# nonEmpty
|
package/src/coffee_utils.js
CHANGED
|
@@ -92,7 +92,7 @@ export var hashHasKey = function(x, key) {
|
|
|
92
92
|
// isEmpty
|
|
93
93
|
// - string is whitespace, array has no elements, hash has no keys
|
|
94
94
|
export var isEmpty = function(x) {
|
|
95
|
-
if (x
|
|
95
|
+
if ((x === undef) || (x === null)) {
|
|
96
96
|
return true;
|
|
97
97
|
}
|
|
98
98
|
if (isString(x)) {
|
|
@@ -104,7 +104,7 @@ export var isEmpty = function(x) {
|
|
|
104
104
|
if (isHash(x)) {
|
|
105
105
|
return Object.keys(x).length === 0;
|
|
106
106
|
} else {
|
|
107
|
-
return
|
|
107
|
+
return false;
|
|
108
108
|
}
|
|
109
109
|
};
|
|
110
110
|
|
package/src/indent_utils.coffee
CHANGED
|
@@ -9,7 +9,7 @@ import {arrayToBlock, blockToArray} from '@jdeighan/coffee-utils/block'
|
|
|
9
9
|
# ---------------------------------------------------------------------------
|
|
10
10
|
# NOTE: Currently, only TAB indentation is supported
|
|
11
11
|
# ---------------------------------------------------------------------------
|
|
12
|
-
# splitLine - separate a line into
|
|
12
|
+
# splitLine - separate a line into [level, line]
|
|
13
13
|
|
|
14
14
|
export splitLine = (line) ->
|
|
15
15
|
|
package/src/indent_utils.js
CHANGED
|
@@ -21,7 +21,7 @@ import {
|
|
|
21
21
|
// ---------------------------------------------------------------------------
|
|
22
22
|
// NOTE: Currently, only TAB indentation is supported
|
|
23
23
|
// ---------------------------------------------------------------------------
|
|
24
|
-
// splitLine - separate a line into
|
|
24
|
+
// splitLine - separate a line into [level, line]
|
|
25
25
|
export var splitLine = function(line) {
|
|
26
26
|
var lMatches;
|
|
27
27
|
assert(line != null, "splitLine(): line is undef");
|