barbican-reset 3.10.0 → 3.11.0

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
@@ -131,5 +131,5 @@
131
131
  "style:patterns": "cd patterns && gulp build:css",
132
132
  "build:patterns": "cd patterns && rm -rf html && pug views --out html"
133
133
  },
134
- "version": "3.10.0"
134
+ "version": "3.11.0"
135
135
  }
@@ -0,0 +1,3 @@
1
+ export default function (a, b) {
2
+ return JSON.stringify(a) === JSON.stringify(b)
3
+ }
@@ -1,11 +1,6 @@
1
1
  import util from 'util'
2
2
 
3
- export default function ({ msg, target }) {
3
+ export default function (target) {
4
4
  let options = { showHidden: false, depth: null, colors: true }
5
-
6
- if (!msg) {
7
- msg = 'logging object:'
8
- }
9
-
10
- console.log(msg, ' ', util.inspect(target, options))
5
+ console.log(util.inspect(target, options))
11
6
  }
@@ -1,3 +1,4 @@
1
+ import compareArrays from '#scripts/helpers/compareArrays'
1
2
  import logObject from '#scripts/helpers/logObject'
2
3
 
3
- export { logObject }
4
+ export { compareArrays, logObject }