Skip to content

Commit

Permalink
[Refactor] capitalized var names are for constructors only.
Browse files Browse the repository at this point in the history
  • Loading branch information
ljharb committed Jul 20, 2016
1 parent cd1e281 commit 937e5f7
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions lib/index.js
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
'use strict';

var Stringify = require('./stringify');
var Parse = require('./parse');
var stringify = require('./stringify');
var parse = require('./parse');

module.exports = {
stringify: Stringify,
parse: Parse
stringify: stringify,
parse: parse
};

0 comments on commit 937e5f7

Please sign in to comment.