Skip to content

Commit

Permalink
fix(constants): Move import
Browse files Browse the repository at this point in the history
Move import to top
  • Loading branch information
maximodleon committed Jan 26, 2018
1 parent 23abad1 commit e4bfcd2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/wiki.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import { FEATURED } from "./constants/index";
const { doSearch, doRandom } = require("./generators/index");
const { queryApi } = require("./utils/urlUtils");
const convert = require("xml-js");
import { FEATURED } from "./constants/index";

function search (searchTerm, lang = "en", options) {
return doSearch(searchTerm, lang, options);
Expand Down

0 comments on commit e4bfcd2

Please sign in to comment.