holderdeord/hdo-site

View on GitHub
app/assets/javascripts/lib/object.create.js

Summary

Maintainability
A
0 mins
Test Coverage
if (typeof Object.create !== 'function') {
    (function () {
        function F() {}

        Object.create = function (o) {
            F.prototype = o;
            return new F();
        };
    }());
}