refactor: create utility for enums

This commit is contained in:
Carlos Valente
2026-01-18 10:29:22 +01:00
parent 84a7b1c1f7
commit c4435259c5
2 changed files with 8 additions and 1 deletions
+1 -1
View File
@@ -62,7 +62,7 @@ export { deepmerge } from './src/externals/deepmerge.js';
// array utils
export { deleteAtIndex, insertAtIndex, mergeAtIndex, reorderArray } from './src/common/arrayUtils.js';
// object utils
export { getPropertyFromPath, isObjectEmpty } from './src/common/objectUtils.js';
export { getPropertyFromPath, isObjectEmpty, withoutUndefinedValues, isValueOfEnum } from './src/common/objectUtils.js';
// generic utilities
export { getErrorMessage } from './src/generic/generic.js';