UNPKG
wcc.js
Version:
latest (1.0.19)
1.0.19
1.0.18
1.0.17
Compiler for wxml and wxss files.
github.com/caijw/wcc.js
caijw/wcc.js
wcc.js
/
src
/
hash.js
11 lines
(7 loc)
•
179 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
const
crypto =
require
(
'crypto'
);
function
sha256
(
txt
){
const
hash = crypto.
createHash
(
'sha256'
); hash.
update
(txt);
return
hash.
digest
(
'hex'
); }
exports
.
sha256
= sha256;