Skip to content

Commit

Permalink
Use consistent quotes.
Browse files Browse the repository at this point in the history
  • Loading branch information
ljharb committed Sep 27, 2014
1 parent 8e02200 commit 0dedc4b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions index.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
"use strict";
'use strict';

module.exports = function isObject(x) {
return typeof x === "object" && x !== null;
return typeof x === 'object' && x !== null;
};

0 comments on commit 0dedc4b

Please sign in to comment.