From b089ec6f765995b41d51cd22c5a56ef9a5a2a9fb Mon Sep 17 00:00:00 2001 From: Robbie Mackay Date: Tue, 16 Dec 2014 14:56:02 +1300 Subject: [PATCH] Fix 'undefind' typo in showdown.js Fix undefind -> should be undefined --- src/showdown.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/showdown.js b/src/showdown.js index b488bad..b4b8ab9 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) {