HTMLify
isPromise.js
Views: 6 | Author: cody
1 2 3 4 5 6 | 'use strict'; function isPromise(val) { return !!val && (typeof val === 'object' || typeof val === 'function') && typeof val.then === 'function'; } module.exports = isPromise; |