UNPKG
mcore-app-generator
Version:
latest (1.0.5)
1.0.5
1.0.4
1.0.3
1.0.1
1.0.0
针对`mcore`库快速生成单页应用项目模板的工具
github.com/vega-wong/mcore-app-generator
vega-wong/mcore-app-generator
mcore-app-generator
/
templates
/
tool
/
getHash.coffee
16 lines
(13 loc)
•
291 B
text/coffeescript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
###*
#
#
@date
2016-01-27 16:00:25
#
@author
vfasky <vfasky
@gmail
.com>
#
@link
http://vfasky.com
###
'use strict'
crypto =
require
'crypto'
module
.exports = (text, len =
8
)-> crypto.createHash(
'md5'
) .update
String
(text) .digest(
'hex'
) .substring(
0
, len)