Skip to content

Commit

Permalink
refactor the imports
Browse files Browse the repository at this point in the history
  • Loading branch information
wpcfan committed Jan 5, 2017
1 parent 50f152f commit 30d0e07
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions wxstream.js
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
import xs from './lib/xstream/index'
import debounce from './lib/xstream/extra/debounce'
import http from './wrappers/http'
import fromEvent from './wrappers/from-event'
import image from './wrappers/image'
import socket from './wrappers/socket'
import file from './wrappers/file'
import { xs } from './lib/xstream/index'
import { debounce } from './lib/xstream/extra/debounce'
import { http } from './wrappers/http'
import { fromEvent } from './wrappers/from-event'
import { image } from './wrappers/image'
import { socket } from './wrappers/socket'
import { file } from './wrappers/file'

module.exports = {
xs: xs,
Expand Down

0 comments on commit 30d0e07

Please sign in to comment.