UNPKG

automizy-email-editor

Version:

Design mobile friendly HTML emails in your application.

16 lines (13 loc) 350 B
define("funcTwo", ["require", "funcOne"], function (require) { var two = function (name) { this.name = name; this.one = new (require("funcOne"))("ONE"); }; two.prototype.oneName = function () { return this.one.getName(); }; return two; } );