Sign in
apache
/
pouchdb
/
refs/heads/test-npm-git
/
.
/
src
/
deps
/
docs
/
isLocalId.js
blob: d55afd8baa6cdfa6556013bead00ff80f8ace18b [
file
] [
log
] [
blame
]
function
isLocalId
(
id
)
{
return
(
/^_local/
).
test
(
id
);
}
export
default
isLocalId
;