Skip to content

Commit

Permalink
Using consistent quotes
Browse files Browse the repository at this point in the history
  • Loading branch information
ljharb committed Oct 1, 2014
1 parent e180beb commit e756817
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions index.js
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
"use strict";
'use strict';

var ObjectPrototype = Object.prototype;
var toString = ObjectPrototype.toString;
var has = ObjectPrototype.hasOwnProperty;

var getPrototypeOf = Object.getPrototypeOf;
if (!getPrototypeOf) {
if (typeof 'test'['__proto__'] === "object") {
if (typeof 'test'['__proto__'] === 'object') {
getPrototypeOf = function (obj) {
return obj['__proto__'];
};
Expand Down
2 changes: 1 addition & 1 deletion test.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
"use strict";
'use strict';

var test = require('tape');
var isEqual = require('./');
Expand Down

0 comments on commit e756817

Please sign in to comment.