FazBrowse GitHub Viewer
|
Trending
|
URL:
|
Home
Tools:
[Download Repo ZIP]
[View Raw Code]
[Original HTTPS Page]
javascripting/index.js at master · DynamicMetaFlow/javascripting · GitHub
DynamicMetaFlow
/
javascripting
Public
forked from
workshopper/javascripting
Notifications
You must be signed in to change notification settings
Fork
0
Star
0
Code
Pull requests
0
Actions
Projects
Wiki
Security and quality
0
Insights
Additional navigation options
Code
Pull requests
Actions
Projects
Wiki
Security and quality
Insights
Expand file tree
Breadcrumbs
javascripting
/
index.js
Copy path
More file actions
More file actions
Latest commit
History
History
History
19 lines (17 loc) · 552 Bytes
Breadcrumbs
javascripting
/
index.js
Copy path
File metadata and controls
19 lines (17 loc) · 552 Bytes
Raw
Copy raw file
Download raw file
Open symbols panel
Edit and raw actions
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
var
jsing
=
require
(
'workshopper-adventure'
)
(
{
appDir
:
__dirname
,
languages
:
[
'en'
,
'ja'
,
'ko'
,
'es'
,
'zh-cn'
,
'pt-br'
,
'nb-no'
,
'uk'
,
'it'
]
,
header
:
require
(
'workshopper-adventure/default/header'
)
,
footer
:
require
(
'./lib/footer.js'
)
}
)
;
jsing
.
addAll
(
require
(
'./menu.json'
)
.
map
(
function
(
problem
)
{
return
{
name
:
problem
,
fn
:
function
(
)
{
var
p
=
problem
.
toLowerCase
(
)
.
replace
(
/
\s
/
g
,
'-'
)
;
var
dir
=
require
(
'path'
)
.
join
(
__dirname
,
'problems'
,
p
)
;
return
require
(
dir
)
;
}
}
}
)
)
module
.
exports
=
jsing
;
Back
|
FazBrowse Home
|
New Git URL