« get me outta code hell

data, util: use typeAppearance in more places - hsmusic-wiki - HSMusic - static wiki software cataloguing collaborative creation
about summary refs log tree commit diff
path: root/src/data/things/validators.js
diff options
context:
space:
mode:
author(quasar) nebula <qznebula@protonmail.com>2023-09-28 14:11:02 -0300
committer(quasar) nebula <qznebula@protonmail.com>2023-09-28 14:11:02 -0300
commit411c053dc4b314b2bc0d58d3899fd796ad0054c2 (patch)
tree5e84c2bfc0609861ae4fb8d4dbf4f758030bbe2c /src/data/things/validators.js
parent518647f8b80ffda6d502b1a75656da7f2ae4b9d3 (diff)
data, util: use typeAppearance in more places
Diffstat (limited to 'src/data/things/validators.js')
-rw-r--r--src/data/things/validators.js6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/data/things/validators.js b/src/data/things/validators.js
index 048f7ebb..ba62fb84 100644
--- a/src/data/things/validators.js
+++ b/src/data/things/validators.js
@@ -1,7 +1,7 @@
 import {inspect as nodeInspect} from 'node:util';
 
 import {colors, ENABLE_COLOR} from '#cli';
-import {empty, withAggregate} from '#sugar';
+import {empty, typeAppearance, withAggregate} from '#sugar';
 
 function inspect(value) {
   return nodeInspect(value, {colors: ENABLE_COLOR});
@@ -15,7 +15,7 @@ export function a(noun) {
 
 export function isType(value, type) {
   if (typeof value !== type)
-    throw new TypeError(`Expected ${a(type)}, got ${typeof value}`);
+    throw new TypeError(`Expected ${a(type)}, got ${typeAppearance(value)}`);
 
   return true;
 }
@@ -132,7 +132,7 @@ export function isObject(value) {
 
 export function isArray(value) {
   if (typeof value !== 'object' || value === null || !Array.isArray(value))
-    throw new TypeError(`Expected an array, got ${value}`);
+    throw new TypeError(`Expected an array, got ${typeAppearance(value)}`);
 
   return true;
 }