UNPKG
egg-kit
Version:
latest (0.0.4)
0.0.4
0.0.3
0.0.2
0.0.1
github.com/inlym/egg-kit
inlym/egg-kit
egg-kit
/
lib
/
launch.js
9 lines
(6 loc)
•
194 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
'use strict'
const
stringKit =
require
(
'../lib/string.js'
)
const
imageKit =
require
(
'../lib/image.js'
)
module
.
exports
=
(
app
) =>
{ app.
kit
=
Object
.
assign
({}, stringKit, imageKit) }