Gazebo_simulation-Frontend/node_modules/.cache/babel-loader/2fa1d1aa3feeb50b264abb427754bbdd.json
2020-12-22 09:59:14 -05:00

1 line
646 B
JSON

{"ast":null,"code":"'use strict';\n\nmodule.exports = {\n isObject: function isObject(obj) {\n var type = typeof obj;\n return type === 'function' || type === 'object' && !!obj;\n },\n extend: function extend(obj) {\n if (!this.isObject(obj)) {\n return obj;\n }\n\n var source, prop;\n\n for (var i = 1, length = arguments.length; i < length; i++) {\n source = arguments[i];\n\n for (prop in source) {\n if (Object.prototype.hasOwnProperty.call(source, prop)) {\n obj[prop] = source[prop];\n }\n }\n }\n\n return obj;\n }\n};","map":null,"metadata":{},"sourceType":"script"}