@jdeighan/coffee-utils 7.0.9 → 7.0.10

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.9",
4
+ "version": "7.0.10",
5
5
  "description": "A set of utility functions for CoffeeScript",
6
6
  "main": "coffee_utils.js",
7
7
  "exports": {
@@ -6,7 +6,7 @@ import fs from 'fs'
6
6
  import NReadLines from 'n-readlines'
7
7
 
8
8
  import {
9
- assert, undef, pass, rtrim, error, nonEmpty,
9
+ assert, undef, pass, rtrim, error, isEmpty, nonEmpty,
10
10
  isString, isArray, isRegExp, isFunction, croak,
11
11
  } from '@jdeighan/coffee-utils'
12
12
  import {log, LOG} from '@jdeighan/coffee-utils/log'
package/src/fs_utils.js CHANGED
@@ -16,6 +16,7 @@ import {
16
16
  pass,
17
17
  rtrim,
18
18
  error,
19
+ isEmpty,
19
20
  nonEmpty,
20
21
  isString,
21
22
  isArray,