-
Notifications
You must be signed in to change notification settings - Fork 12
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
refactor(codeclimate): improve quality
- Loading branch information
Ahmad Nassri
committed
Dec 4, 2016
1 parent
080628c
commit aeae2c6
Showing
2 changed files
with
34 additions
and
17 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,20 +1,37 @@ | ||
'use strict' | ||
|
||
const cache = require('./cache.json') | ||
const cacheEntry = require('./cacheEntry.json') | ||
const content = require('./content.json') | ||
const cookie = require('./cookie.json') | ||
const creator = require('./creator.json') | ||
const entry = require('./entry.json') | ||
const har = require('./har.json') | ||
const index = require('./index.js') | ||
const log = require('./log.json') | ||
const page = require('./page.json') | ||
const pageTimings = require('./pageTimings.json') | ||
const postData = require('./postData.json') | ||
const record = require('./record.json') | ||
const request = require('./request.json') | ||
const response = require('./response.json') | ||
const timings = require('./timings.json') | ||
|
||
module.exports = { | ||
cache: require('./cache.json'), | ||
cacheEntry: require('./cacheEntry.json'), | ||
content: require('./content.json'), | ||
cookie: require('./cookie.json'), | ||
creator: require('./creator.json'), | ||
entry: require('./entry.json'), | ||
har: require('./har.json'), | ||
index: require('./index.js'), | ||
log: require('./log.json'), | ||
page: require('./page.json'), | ||
pageTimings: require('./pageTimings.json'), | ||
postData: require('./postData.json'), | ||
record: require('./record.json'), | ||
request: require('./request.json'), | ||
response: require('./response.json'), | ||
timings: require('./timings.json') | ||
cache, | ||
cacheEntry, | ||
content, | ||
cookie, | ||
creator, | ||
entry, | ||
har, | ||
index, | ||
log, | ||
page, | ||
pageTimings, | ||
postData, | ||
record, | ||
request, | ||
response, | ||
timings | ||
} |
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