From 6408c1b3286e99432aed318dfb22f829f9726f0d Mon Sep 17 00:00:00 2001 From: robonen Date: Thu, 31 Oct 2024 00:48:55 +0700 Subject: [PATCH] feat(packages/stdlib): add object tools exports --- packages/stdlib/src/index.ts | 1 + packages/stdlib/src/objects/index.ts | 2 ++ 2 files changed, 3 insertions(+) create mode 100644 packages/stdlib/src/objects/index.ts diff --git a/packages/stdlib/src/index.ts b/packages/stdlib/src/index.ts index 084c951..9e936f1 100644 --- a/packages/stdlib/src/index.ts +++ b/packages/stdlib/src/index.ts @@ -2,6 +2,7 @@ export * from './arrays'; export * from './async'; export * from './bits'; export * from './math'; +export * from './objects'; export * from './patterns'; export * from './structs'; export * from './text'; diff --git a/packages/stdlib/src/objects/index.ts b/packages/stdlib/src/objects/index.ts new file mode 100644 index 0000000..76705c5 --- /dev/null +++ b/packages/stdlib/src/objects/index.ts @@ -0,0 +1,2 @@ +export * from './omit'; +export * from './pick';