@jdeighan/coffee-utils 7.0.36 → 7.0.37
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/indent_utils.coffee +2 -2
- package/src/indent_utils.js +2 -2
package/package.json
CHANGED
package/src/indent_utils.coffee
CHANGED
@@ -13,8 +13,8 @@ import {arrayToBlock, blockToArray} from '@jdeighan/coffee-utils/block'
|
|
13
13
|
|
14
14
|
export splitLine = (line) ->
|
15
15
|
|
16
|
-
assert line
|
17
|
-
assert isString(line), "splitLine(): line
|
16
|
+
assert defined(line), "splitLine(): line is undef"
|
17
|
+
assert isString(line), "splitLine(): non-string #{OL(line)}"
|
18
18
|
line = rtrim(line)
|
19
19
|
lMatches = line.match(/^(\s*)(.*)$/)
|
20
20
|
return [lMatches[1].length, lMatches[2]]
|
package/src/indent_utils.js
CHANGED
@@ -25,8 +25,8 @@ import {
|
|
25
25
|
// splitLine - separate a line into [level, line]
|
26
26
|
export var splitLine = function(line) {
|
27
27
|
var lMatches;
|
28
|
-
assert(line
|
29
|
-
assert(isString(line),
|
28
|
+
assert(defined(line), "splitLine(): line is undef");
|
29
|
+
assert(isString(line), `splitLine(): non-string ${OL(line)}`);
|
30
30
|
line = rtrim(line);
|
31
31
|
lMatches = line.match(/^(\s*)(.*)$/);
|
32
32
|
return [lMatches[1].length, lMatches[2]];
|