You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

ensure.js 274B

123456789
  1. "use strict";
  2. var resolveException = require("../lib/resolve-exception")
  3. , is = require("./is");
  4. module.exports = function (value/*, options*/) {
  5. if (is(value)) return value;
  6. return resolveException(value, "%v is not a plain function", arguments[1]);
  7. };