UNPKG

mout

Version:

Modular Utilities

9 lines (8 loc) 302 B
/** * Inherit prototype from another Object. * - inspired by Nicholas Zackas <http://nczonline.net> Solution * @param {object} child Child object * @param {object} parent Parent Object */ declare function inheritPrototype(child: any, parent: any): any; export default inheritPrototype;