Skip to content

Commit 8e65d29

Browse files
committed
if no processors, default to empty
1 parent f6b5c43 commit 8e65d29

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lib/index.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@
4343
var source = bin.source;
4444
var css = safeForHTML(bin.css || '');
4545
var javascript = safeForHTML(bin.javascript || '');
46-
var processors = bin.processors;
46+
var processors = bin.processors || {};
4747
var meta = bin.meta || (bin.url ? '<!-- source: http://jsbin.com/' + bin.url + '/' + (bin.revision || '') + ' -->\n' : '');
4848

4949
/**

0 commit comments

Comments
 (0)