Show More
Commit Description:
submission report
Commit Description:
submission report
File last commit:
Show/Diff file:
Action:
node_modules/es5-ext/object/ensure-thenable.js | 9 lines | 253 B | application/javascript | JavascriptLexer |
"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;
};