Skip to content

Commit

Permalink
Cleanup and update version number preparing for 0.10.3 release
Browse files Browse the repository at this point in the history
  • Loading branch information
briancavalier committed Dec 19, 2011
1 parent a3570e0 commit 09bbfe2
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions when.js
Expand Up @@ -8,14 +8,12 @@
* when.js
* A lightweight CommonJS Promises/A and when() implementation
*
* @version 0.10.2
* @version 0.10.3
* @author brian@hovercraftstudios.com
*/

// Boilerplate for AMD, Node, and browser global
(typeof define == "function" ? define : function (factory) { typeof module != 'undefined' ? (module.exports = factory()) : (this.when = factory()); })(function() {
//(function(factory){ try { define(factory); } catch(e) { try { module.exports = factory(); } catch(e) { this.when = factory(); }}})(function() {
//(function(factory){try{define(factory);}catch(e){module.exports = factory();}})(function(){
// End boilerplate

var freeze, reduceArray, undef;
Expand Down

0 comments on commit 09bbfe2

Please sign in to comment.