NuclearDispersionSystem/ant-design-vue-jeecg/node_modules/es5-ext/object/ensure-plain-object.js
2023-09-14 14:47:11 +08:00

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;
};