File tree Expand file tree Collapse file tree 4 files changed +9
-8
lines changed
Expand file tree Collapse file tree 4 files changed +9
-8
lines changed Load Diff This file was deleted.
Original file line number Diff line number Diff line change 11# @inox-tools/utils
22
3+ ## 0.8.1
4+
5+ ### Patch Changes
6+
7+ - e5bb120: Export utility type ` UnwrapLazies ` to turn an array of ` Lazy ` instances into an array of their lazy values.
8+
39## 0.8.0
410
511### Minor Changes
Original file line number Diff line number Diff line change 11{
22 "name" : " @inox-tools/utils" ,
3- "version" : " 0.8.0 " ,
3+ "version" : " 0.8.1 " ,
44 "description" : " A collection of utilities used throughout Inox Tools" ,
55 "keywords" : [
66 " utilities"
Original file line number Diff line number Diff line change @@ -45,7 +45,7 @@ export class Lazy<T> implements Promise<T> {
4545
4646 private attachments ?: ( ( value : T ) => void ) [ ] = [ ] ;
4747
48- private constructor ( private factory : ( ) => T ) { }
48+ private constructor ( private factory : ( ) => T ) { }
4949
5050 /**
5151 * Creates a new Lazy instance from a factory function.
@@ -264,7 +264,7 @@ export class LazyKeyed<T> {
264264 /** List of callbacks to invoke when any value is created */
265265 private readonly attachments : LazyMapping < T > [ ] = [ ] ;
266266
267- private constructor ( private factory : ( key : string ) => T ) { }
267+ private constructor ( private factory : ( key : string ) => T ) { }
268268
269269 /**
270270 * Creates a new LazyKeyed instance from a factory function.
You can’t perform that action at this time.
0 commit comments