Skip to content

Commit 937e5f7

Browse files
committed
[Refactor] capitalized var names are for constructors only.
1 parent cd1e281 commit 937e5f7

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

lib/index.js

+4-4
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
'use strict';
22

3-
var Stringify = require('./stringify');
4-
var Parse = require('./parse');
3+
var stringify = require('./stringify');
4+
var parse = require('./parse');
55

66
module.exports = {
7-
stringify: Stringify,
8-
parse: Parse
7+
stringify: stringify,
8+
parse: parse
99
};

0 commit comments

Comments
 (0)