Exemple #1
0
export default function initChildInstance ( child, Child, options ) {
	if ( child.beforeInit ) {
		child.beforeInit( options );
	}

	initialise( child, options );
}
Exemple #2
0
Ractive = function ( options ) {
	initialise( this, options );
};