url-template
Advanced tools
Comparing version 2.0.1 to 2.0.2
@@ -1,2 +0,10 @@ | ||
(function () { | ||
(function (root, factory) { | ||
if (typeof exports === 'object') { | ||
module.exports = factory(); | ||
} else if (typeof define === 'function' && define.amd) { | ||
define([], factory); | ||
} else { | ||
root.urltemplate = factory(); | ||
} | ||
}(this, function () { | ||
/** | ||
@@ -170,7 +178,3 @@ * @constructor | ||
if (typeof module !== 'undefined' && module.exports) { | ||
module.exports = new UrlTemplate(); | ||
} else { | ||
window.urltemplate = new UrlTemplate(); | ||
} | ||
}()); | ||
return new UrlTemplate(); | ||
})); |
{ | ||
"name": "url-template", | ||
"version": "2.0.1", | ||
"version": "2.0.2", | ||
"decription": "A URI template implementation (RFC 6570 compliant)", | ||
@@ -5,0 +5,0 @@ "author": "Bram Stein <b.l.stein@gmail.com> (http://www.bramstein.com)", |
19364
470