From ec66101e80eb5e71c7bb146973290966d1806e66 Mon Sep 17 00:00:00 2001 From: Alec Perkins Date: Sat, 25 Jan 2014 13:41:57 -0500 Subject: [PATCH] Fix typos in module/exports/require detection. --- src/showdown.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/showdown.js b/src/showdown.js index 12ad0fa..f9b39e1 100644 --- a/src/showdown.js +++ b/src/showdown.js @@ -117,7 +117,7 @@ var g_output_modifiers = []; // Automatic Extension Loading (node only): // -if (typeof module !== 'undefind' && typeof exports !== 'undefined' && typeof require !== 'undefind') { +if (typeof module !== 'undefined' && typeof exports !== 'undefined' && typeof require !== 'undefined') { var fs = require('fs'); if (fs && fs.readdirSync) {