@jdeighan/coffee-utils 7.0.10 → 7.0.11

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.10",
4
+ "version": "7.0.11",
5
5
  "description": "A set of utility functions for CoffeeScript",
6
6
  "main": "coffee_utils.js",
7
7
  "exports": {
@@ -11,6 +11,7 @@ import {
11
11
  } from '@jdeighan/coffee-utils'
12
12
  import {log, LOG} from '@jdeighan/coffee-utils/log'
13
13
  import {debug} from '@jdeighan/coffee-utils/debug'
14
+ import {arrayToBlock} from '@jdeighan/coffee-utils/block'
14
15
 
15
16
  # ---------------------------------------------------------------------------
16
17
  # mydir() - pass argument `import.meta.url` and it will return
package/src/fs_utils.js CHANGED
@@ -34,6 +34,10 @@ import {
34
34
  debug
35
35
  } from '@jdeighan/coffee-utils/debug';
36
36
 
37
+ import {
38
+ arrayToBlock
39
+ } from '@jdeighan/coffee-utils/block';
40
+
37
41
  // ---------------------------------------------------------------------------
38
42
  // mydir() - pass argument `import.meta.url` and it will return
39
43
  // the directory your file is in