UNPKG

sugar

Version:

A Javascript utility library for working with native objects.

9 lines (7 loc) 223 B
'use strict'; function setChainableConstructor(sugarNamespace, createFn) { sugarNamespace.prototype.constructor = function() { return createFn.apply(this, arguments); }; } module.exports = setChainableConstructor;