UNPKG

data-provider-temporary

Version:

Library that helps with server-to-client synchronization of data

10 lines (7 loc) 251 B
"use strict"; var safeToString = require("../safe-to-string") , isPromise = require("./is-promise"); module.exports = function (value) { if (!isPromise(value)) throw new TypeError(safeToString(value) + " is not a thenable"); return value; };