From 89114a97ee8c0d63d4e7dee52c6de2734a81cb89 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Oskar=20Segersv=C3=A4rd?= Date: Wed, 14 Oct 2015 21:59:48 +0200 Subject: [PATCH] Added missing import Fixes #189 --- src/utils/first.js | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/utils/first.js b/src/utils/first.js index 43a12f4..f703735 100644 --- a/src/utils/first.js +++ b/src/utils/first.js @@ -1,3 +1,5 @@ +import Promise from 'es6-promise/lib/es6-promise/promise'; + // Return the first non-falsy result from an array of // maybe-sync, maybe-promise-returning functions export default function first ( candidates ) {