Skip to content

Commit

Permalink
code style - import order
Browse files Browse the repository at this point in the history
  • Loading branch information
sindresorhus committed Mar 27, 2016
1 parent f65477e commit 0664b98
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion index.js
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,9 @@ const EventEmitter = require('events').EventEmitter;
const http = require('http');
const https = require('https');
const PassThrough = require('stream').PassThrough;
const duplexer3 = require('duplexer3');
const urlLib = require('url');
const querystring = require('querystring');
const duplexer3 = require('duplexer3');
const isStream = require('is-stream');
const getStream = require('get-stream');
const timedOut = require('timed-out');
Expand Down
2 changes: 1 addition & 1 deletion test/stream.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import test from 'ava';
import got from '../';
import intoStream from 'into-stream';
import got from '../';
import {createServer} from './helpers/server';

let s;
Expand Down

0 comments on commit 0664b98

Please sign in to comment.