Ohm-Management - Projektarbeit B-ME
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.

index.js 211B

1234567891011
  1. 'use strict';
  2. var stringify = require('./stringify');
  3. var parse = require('./parse');
  4. var formats = require('./formats');
  5. module.exports = {
  6. formats: formats,
  7. parse: parse,
  8. stringify: stringify
  9. };