fd22b0bf58
V2 (Laravel re-make)
10 lines
253 B
JavaScript
10 lines
253 B
JavaScript
"use strict";
|
|
|
|
var safeToString = require("../safe-to-string")
|
|
, isThenable = require("./is-thenable");
|
|
|
|
module.exports = function (value) {
|
|
if (!isThenable(value)) throw new TypeError(safeToString(value) + " is not a thenable");
|
|
return value;
|
|
};
|