This website works better with JavaScript.
Home
Explore
Help
Sign In
jan
/
mustache.js
mirror of
https://github.com/janl/mustache.js
Watch
1
Star
0
Fork
0
Code
Issues
0
Releases
46
Wiki
Activity
Browse Source
Merge pull request
#243
from kannix/patch-1
more stringent CommonJS check
tags/0.6.0
Michael Jackson
13 years ago
parent
6d1954cb5c
2afdb083fc
commit
2a51eeffba
1 changed files
with
1 additions
and
1 deletions
Split View
Diff Options
Show Stats
Download Patch File
Download Diff File
+1
-1
mustache.js
+ 1
- 1
mustache.js
View File
@@ -8,7 +8,7 @@
var Mustache;
(function (exports) {
if (typeof module !== "undefined") {
if (typeof module !== "undefined"
&& typeof module.exports !== "undefined"
) {
module.exports = exports; // CommonJS
} else if (typeof define === "function") {
define(exports); // AMD
Write
Preview
Loading…
Cancel
Save