Last active
August 29, 2015 14:15
-
-
Save 255kb/60f632a8adecf14c7cb5 to your computer and use it in GitHub Desktop.
Revisions
-
255kb renamed this gist
Feb 13, 2015 . 1 changed file with 0 additions and 0 deletions.There are no files selected for viewing
File renamed without changes. -
255kb revised this gist
Feb 13, 2015 . 1 changed file with 1 addition and 2 deletions.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -14,8 +14,7 @@ }(this, function() { 'use strict'; function library(){ }; library.prototype = { -
255kb revised this gist
Feb 13, 2015 . 1 changed file with 1 addition and 1 deletion.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -4,7 +4,7 @@ if (typeof define === 'function' && define.amd) { //AMD define([], factory); } else if (typeof module !== 'undefined' && module.exports) { //Node.js or CommonJS module.exports = factory(); } else { -
255kb created this gist
Feb 13, 2015 .There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,26 @@ /* 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(newId){ this.id = newId; }; library.prototype = { }; return library; }));