mirror of
https://github.com/wishthis/wishthis.git
synced 2026-04-26 17:41:27 -04:00
10 lines
266 B
JavaScript
10 lines
266 B
JavaScript
"use strict";
|
|
|
|
var safeToString = require("../safe-to-string")
|
|
, isPlainObject = require("./is-plain-object");
|
|
|
|
module.exports = function (value) {
|
|
if (!isPlainObject(value)) throw new TypeError(safeToString(value) + " is not a plain object");
|
|
return value;
|
|
};
|