From b0c25e6447901927ed7657ca6f8b7877bd0e8a06 Mon Sep 17 00:00:00 2001
From: Amaury <AmauryD@users.noreply.github.com>
Date: Sat, 22 Oct 2022 04:04:05 +0200
Subject: [PATCH] export array utils functions (#180)

---
 src/index.ts | 5 ++++-
 1 file changed, 4 insertions(+), 1 deletion(-)

diff --git a/src/index.ts b/src/index.ts
index 5352e2c..4e7066e 100644
--- a/src/index.ts
+++ b/src/index.ts
@@ -20,7 +20,7 @@ import take from './utils/take';
 import mergeDeep, { propertyIsUnsafe } from './utils/merge-deep';
 import setDeep from './utils/set-deep';
 import getDeep, { getSubObject } from './utils/get-deep';
-import { objectToArray, arrayToObject } from './utils/array-object';
+import { objectToArray, arrayToObject, isArrayObject } from './utils/array-object';
 
 import type {
   Changes,
@@ -52,6 +52,9 @@ export {
   CHANGESET,
   Change,
   Err,
+  isArrayObject,
+  arrayToObject,
+  objectToArray,
   buildOldValues,
   isChangeset,
   isObject,