-
-
Notifications
You must be signed in to change notification settings - Fork 731
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #125 from hapijs/es6
es6. Closes #124
- Loading branch information
Showing
9 changed files
with
250 additions
and
234 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,8 @@ | ||
language: node_js | ||
|
||
node_js: | ||
- 0.10 | ||
- 4.0 | ||
- 4 | ||
- 5 | ||
|
||
sudo: false |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,15 +1,15 @@ | ||
'use strict'; | ||
|
||
// Load modules | ||
|
||
var Stringify = require('./stringify'); | ||
var Parse = require('./parse'); | ||
const Stringify = require('./stringify'); | ||
const Parse = require('./parse'); | ||
|
||
|
||
// Declare internals | ||
|
||
var internals = {}; | ||
const internals = {}; | ||
|
||
|
||
module.exports = { | ||
stringify: Stringify, | ||
parse: Parse | ||
}; | ||
exports.stringify = Stringify; | ||
exports.parse = Parse; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.