Gazebo_simulation-Frontend/node_modules/.cache/babel-loader/345bfaeab1bed23b6e45c141c81350bc.json

1 line
793 B
JSON
Raw Normal View History

2020-12-31 16:18:50 -04:00
{"ast":null,"code":"var isObject = require('./isObject');\n/** Built-in value references. */\n\n\nvar objectCreate = Object.create;\n/**\n * The base implementation of `_.create` without support for assigning\n * properties to the created object.\n *\n * @private\n * @param {Object} proto The object to inherit from.\n * @returns {Object} Returns the new object.\n */\n\nvar baseCreate = function () {\n function object() {}\n\n return function (proto) {\n if (!isObject(proto)) {\n return {};\n }\n\n if (objectCreate) {\n return objectCreate(proto);\n }\n\n object.prototype = proto;\n var result = new object();\n object.prototype = undefined;\n return result;\n };\n}();\n\nmodule.exports = baseCreate;","map":null,"metadata":{},"sourceType":"script"}