Release: 1.0.4

This commit is contained in:
deltreey
2015-08-09 18:59:11 -04:00
parent 31bc54a4e6
commit 54d1a9e180
3 changed files with 10 additions and 7 deletions

View File

@@ -54,15 +54,18 @@
<pre
class="sunlight-highlight-javascript linenums">'use strict';
(function (root, definition) {
var wildstring = (function (name, definition) {
if (typeof(module) !== 'undefined') {
module.exports = definition();
}
else if (typeof(define) === 'function' &amp;&amp; typeof(define.amd) === 'object') {
define(definition);
}
else if (typeof(this) !== 'undefined') {
this[name] = definition();
}
else {
this['wildstring'] = definition();
return definition();
}
}('wildstring', function () {