UNPKG

246 BJavaScriptView Raw
1/** @license MIT License (c) copyright 2010-2016 original author or authors */
2/** @author Brian Cavalier */
3/** @author John Hann */
4
5export function isPromise (p) {
6 return p !== null && typeof p === 'object' && typeof p.then === 'function'
7}