Skip to content

Commit

Permalink
👕 lint
Browse files Browse the repository at this point in the history
  • Loading branch information
dmnd committed Nov 8, 2015
1 parent f33e88a commit 3be3ea0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion dedent.js
Original file line number Diff line number Diff line change
Expand Up @@ -42,6 +42,6 @@ function dedent(strings, ...values) {
return lines.map(l => l[0] === " " ? l.slice(mindent) : l).join("\n");
}

if ('undefined' !== typeof module) {
if (typeof module !== "undefined") {
module.exports = dedent;
}

0 comments on commit 3be3ea0

Please sign in to comment.