Skip to content

Commit

Permalink
Use consistent quotes
Browse files Browse the repository at this point in the history
  • Loading branch information
ljharb committed Oct 1, 2014
1 parent 5a667d9 commit 9509a81
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion index.js
@@ -1,4 +1,4 @@
"use strict";
'use strict';

module.exports = function isNegativeZero(value) {
var number = Number(value);
Expand Down
2 changes: 1 addition & 1 deletion test.js
@@ -1,4 +1,4 @@
"use strict";
'use strict';

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

0 comments on commit 9509a81

Please sign in to comment.