Comparing version 0.0.792 to 0.0.793
{ | ||
"name": "spica", | ||
"version": "0.0.792", | ||
"version": "0.0.793", | ||
"description": "Supervisor, Coroutine, Channel, select, AtomicPromise, Cancellation, Cache, List, Queue, Stack, and some utils.", | ||
@@ -5,0 +5,0 @@ "private": false, |
@@ -380,3 +380,3 @@ import { isArray } from './alias'; | ||
return value != null && typeof value === 'object' | ||
&& typeof value.then === 'function'; | ||
&& 'then' in value && typeof value.then === 'function'; | ||
} | ||
@@ -383,0 +383,0 @@ |
846717