UNPKG
mutants-appfx
Version:
latest (1.0.2)
1.0.2
1.0.1
1.0.0
appfx module
mutants-appfx
/
dist
/
viewmodels
/
util.js
15 lines
(12 loc)
•
270 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
'use strict'
;
Object
.
defineProperty
(
exports
,
"__esModule"
, {
value
:
true
});
var
gid =
0
;
// 分配全局id
var
assignId =
exports
.
assignId
=
function
assignId
(
pre
) {
// 每次加一
gid = gid +
1
;
return
(pre ||
''
) + gid; };
//# sourceMappingURL=util.js.map