intern-Assignment/Sequelize-library/node_modules/es5-ext/object/ensure-thenable.js

10 lines
253 B
JavaScript
Raw Permalink Normal View History

2025-01-31 09:50:39 +00:00
"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;
};