Sha256: b194d6ebe3d8531da57bebac3b3d6595f08b8b726f63c5c829ad93bde253722d
Contents?: true
Size: 610 Bytes
Versions: 69
Compression:
Stored size: 610 Bytes
Contents
define(['../object/mixIn'], function(mixIn){ /** * Create Object using prototypal inheritance and setting custom properties. * - Mix between Douglas Crockford Prototypal Inheritance <http://javascript.crockford.com/prototypal.html> and the EcmaScript 5 `Object.create()` method. * @param {object} parent Parent Object. * @param {object} [props] Object properties. * @return {object} Created object. */ function createObject(parent, props){ function F(){} F.prototype = parent; return mixIn(new F(), props); } return createObject; });
Version data entries
69 entries across 69 versions & 2 rubygems