@jdeighan/coffee-utils 11.0.28 → 11.0.30

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": "11.0.28",
4
+ "version": "11.0.30",
5
5
  "description": "A set of utility functions for CoffeeScript",
6
6
  "main": "coffee_utils.js",
7
7
  "exports": {
@@ -50,7 +50,7 @@
50
50
  },
51
51
  "homepage": "https://github.com/johndeighan/coffee-utils#readme",
52
52
  "dependencies": {
53
- "@jdeighan/exceptions": "^1.0.23",
53
+ "@jdeighan/exceptions": "^1.0.24",
54
54
  "cross-env": "^7.0.3",
55
55
  "js-yaml": "^4.1.0",
56
56
  "n-readlines": "^1.0.1",
@@ -58,6 +58,6 @@
58
58
  "svelte": "^3.52.0"
59
59
  },
60
60
  "devDependencies": {
61
- "@jdeighan/unit-tester": "^2.0.48"
61
+ "@jdeighan/unit-tester": "^2.0.49"
62
62
  }
63
63
  }
package/src/utils.coffee CHANGED
@@ -12,7 +12,7 @@ import {
12
12
  } from '@jdeighan/exceptions/utils'
13
13
 
14
14
  export {
15
- undef, pass, defined, notdefined, sep_dash, sep_eq,
15
+ undef, pass, defined, notdefined, LOG, sep_dash, sep_eq,
16
16
  deepCopy, escapeStr, unescapeStr, hasChar, quoted, OL,
17
17
  isString, isNumber, isInteger, isHash, isArray, isBoolean,
18
18
  isConstructor, isFunction, isRegExp, isObject, getClassName,
package/src/utils.js CHANGED
@@ -50,6 +50,7 @@ export {
50
50
  pass,
51
51
  defined,
52
52
  notdefined,
53
+ LOG,
53
54
  sep_dash,
54
55
  sep_eq,
55
56
  deepCopy,