From 0dedc4b8656063e99b2780b3b989fa404b9242be Mon Sep 17 00:00:00 2001 From: Jordan Harband Date: Sat, 27 Sep 2014 00:15:22 -0700 Subject: [PATCH] Use consistent quotes. --- index.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/index.js b/index.js index e618d11..1c97152 100644 --- a/index.js +++ b/index.js @@ -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; };