1
0
mirror of https://github.com/robonen/tools.git synced 2026-03-20 02:44:45 +00:00

feat(packages/stdlib): add object tools exports

This commit is contained in:
2024-10-31 00:48:55 +07:00
parent 23541a5476
commit 6408c1b328
2 changed files with 3 additions and 0 deletions

View File

@@ -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';

View File

@@ -0,0 +1,2 @@
export * from './omit';
export * from './pick';