14 lines
436 B
Plaintext
14 lines
436 B
Plaintext
"use strict";
|
|
|
|
var resolveException = require("../lib/resolve-exception")
|
|
, coerce = require("./coerce");
|
|
|
|
module.exports = function (value /*, options*/) {
|
|
var coerced = coerce(value);
|
|
if (coerced !== null) return coerced;
|
|
var options = arguments[1];
|
|
var errorMessage =
|
|
options && options.name ? "Expected bigint for %n, received %v" : "%v is not a bigint";
|
|
return resolveException(value, errorMessage, options);
|
|
};
|