UNPKG

find-node-modules

Version:

Return an array of all parent node_modules directories

6 lines (4 loc) 165 B
module.exports = isPromise; function isPromise(obj) { return !!obj && (typeof obj === 'object' || typeof obj === 'function') && typeof obj.then === 'function'; }