UNPKG
@liuhlightning/wx-pay
Version:
latest (0.3.4)
0.3.4
0.3.2
0.3.1
0.3.0
0.2.3
0.2.2
0.2.1
0.1.1
0.0.5
0.0.4
0.0.3
0.0.2
0.0.1
communicate to wx pay
github.com/ZhoufangErqiangu/wx-pay
ZhoufangErqiangu/wx-pay
@liuhlightning/wx-pay
/
dist
/
util
/
nonceStr.js
10 lines
•
281 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
10
"use strict"
;
Object
.
defineProperty
(
exports
,
"__esModule"
, {
value
:
true
});
exports
.
nonceStr
= nonceStr;
/** * 生成nonce字符串, 默认长度16 */
function
nonceStr
(
length =
16
) {
return
Math
.
random
().
toFixed
(length).
split
(
"."
)[
1
]; }
//# sourceMappingURL=nonceStr.js.map