/* Replace 'library' by your library name */ (function(root, factory) { if (typeof define === 'function' && define.amd) { //AMD define([], factory); } else if (typeof module !== 'undefined' && module.exports) { //Node.js or CommonJS module.exports = factory(); } else { //Global root.library = factory(); } }(this, function() { 'use strict'; function library(){ }; library.prototype = { }; return library; }));