From da73543fb7d298491872829b82c4cf961a2bc2e0 Mon Sep 17 00:00:00 2001 From: Abhishiv Saxena Date: Wed, 16 Oct 2024 11:23:53 +0530 Subject: [PATCH] rf --- README.md | 2 +- src/index.ts | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 7cd09ea..4f72517 100644 --- a/README.md +++ b/README.md @@ -16,7 +16,7 @@ #### Features - **Rich and Complete:** From support for `SVG` to popular patterns like `dangerouslySetInnerHTML`, `ref` to `` and `` alfama has you covered. -- **Small:** Fully featured at `~10kB` gzip. +- **Small:** Fully featured at `~9kB` gzip. - **Truly reactive and fine grained:** Unlike VDOM libraries which use diffing to compute changes, it uses fine grained updates to target only the DOM which needs to update. - **No Magic:** Explicit subscriptions obviate the need of [`sample`](https://github.com/luwes/sinuous/blob/8d1aa0cdb8a25e6bfcdf34f022523564a9adb533/src/observable.js#L34-L49)/[`untrack`](https://github.com/vobyjs/voby#untrack) methods found in other fine grained reactive libraries like solid/sinuous. _Importantly, many feel that this also makes your code easy to reason about._ - **Signals and Stores:** Signals for primitives and Stores for deeply nested objects/arrays. diff --git a/src/index.ts b/src/index.ts index 93667b2..72443fe 100644 --- a/src/index.ts +++ b/src/index.ts @@ -19,7 +19,7 @@ export { } from "./core/state"; export type * from "./core/state"; export * from "./stdlib/index"; -export * from "./utils/index"; +export { getValueUsingPath } from "./utils/index"; import { Signal } from "./core"; import { ComponentUtils } from "./dom";