From 1882275ce7bc9beae7815c7d18a6c5e515cd0e65 Mon Sep 17 00:00:00 2001 From: Justin Wind Date: Tue, 28 Jun 2022 14:48:31 -0700 Subject: [PATCH] fix typo --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 10f677c..12d6cdd 100644 --- a/README.md +++ b/README.md @@ -8,6 +8,6 @@ Easily defer property initialization until first access. const { lazy } = require('@squeep/lazy-property'); const obj = {}; -lazy(obj, () => doSomethingExpensive()); +lazy(obj, 'prop', () => doSomethingExpensive()); const getItNow = obj.prop; ``` -- 2.43.2