You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

15 lines
200 B

7 years ago
  1. // Load modules
  2. var Stringify = require('./stringify');
  3. var Parse = require('./parse');
  4. // Declare internals
  5. var internals = {};
  6. module.exports = {
  7. stringify: Stringify,
  8. parse: Parse
  9. };