Skip to content
Snippets Groups Projects
Select Git revision
  • master
1 result

CLCBooksSQL.sql

Blame
  • isPromise.js 141 B
    'use strict';
    
    const internals = {};
    
    
    module.exports = function (promise) {
    
        return !!promise && typeof promise.then === 'function';
    };