forked from algorithm-visualizer/algorithm-visualizer
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.js
More file actions
25 lines (23 loc) · 749 Bytes
/
Copy pathindex.js
File metadata and controls
25 lines (23 loc) · 749 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
'use strict';
const showAlgorithm = require('./show_algorithm');
const addCategories = require('./add_categories');
const showDescription = require('./show_description');
const addFiles = require('./add_files');
const showFirstAlgorithm = require('./show_first_algorithm');
const showRequestedAlgorithm = require('./show_requested_algorithm');
const showWiki = require('./show_wiki');
const enableSearch = require('./enable_search');
const resizeWorkspace = require('./resize_workspace');
const enableFullScreen = require('./enable_fullscreen');
module.exports = {
showAlgorithm,
addCategories,
showDescription,
addFiles,
showFirstAlgorithm,
showRequestedAlgorithm,
showWiki,
enableSearch,
resizeWorkspace,
enableFullScreen
};