Sign in
apache
/
pouchdb
/
refs/heads/4071-part-three
/
.
/
lib
/
deps
/
docs
/
isLocalId.js
blob: cc0d6055c462add570fc36a751a9be9b583b43c2 [
file
] [
log
] [
blame
]
'use strict'
;
function
isLocalId
(
id
)
{
return
(
/^_local/
).
test
(
id
);
}
module
.
exports
=
isLocalId
;