katoikia-app/web-ui/web-react/node_modules/es5-ext/object/ensure-plain-object.js

10 lines
266 B
JavaScript
Raw Normal View History

2022-07-06 04:15:11 +00:00
"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;
};