tddjs > Object Create

by s_hiroshi

JavaScript

/*jslint indent: 2*/
if (!Object.create) {
    (function() {
        function F() {}
        Object.create = function(object) {
            F.prototype = object;
            return new F();
        };
    }());
}