10 lines
215 B
Plaintext
10 lines
215 B
Plaintext
"use strict";
|
|
|
|
var isObject = require("../object/is");
|
|
|
|
module.exports = function (value) {
|
|
if (!isObject(value)) return false;
|
|
try { return typeof value.then === "function"; }
|
|
catch (error) { return false; }
|
|
};
|