Sign in
apache
/
pouchdb
/
refs/heads/remove-lie
/
.
/
packages
/
node_modules
/
pouchdb-utils
/
src
/
rev.js
blob: 1ce26eeb21f4f521f8cc31cc5bb8790f1b3af9a7 [
file
] [
log
] [
blame
]
import
uuid from
'uuid'
;
function
rev
()
{
return
uuid
.
v4
().
replace
(
/-/
g
,
''
).
toLowerCase
();
}
export
default
rev
;