(waiting = false)
| 215 | * @since 4.0.0 |
| 216 | */ |
| 217 | export const initial = <A = never, E = never>(waiting = false): Initial<A, E> => { |
| 218 | const result = Object.create(ResultProto) |
| 219 | result._tag = "Initial" |
| 220 | result.waiting = waiting |
| 221 | return result |
| 222 | } |
| 223 | |
| 224 | /** |
| 225 | * Successful `AsyncResult` containing the current value, its timestamp, and the shared waiting flag. |
no outgoing calls
no test coverage detected