Viewing File: /home/ubuntu/route-and-root-frontend-base/node_modules/es5-ext/object/assign/is-implemented.js

"use strict";

module.exports = function () {
	var assign = Object.assign, obj;
	if (typeof assign !== "function") return false;
	obj = { foo: "raz" };
	assign(obj, { bar: "dwa" }, { trzy: "trzy" });
	return obj.foo + obj.bar + obj.trzy === "razdwatrzy";
};
Back to Directory File Manager