Sign in
apache
/
pouchdb
/
refs/heads/extract-polyfills
/
.
/
packages
/
node_modules
/
pouchdb-merge
/
src
/
isLocalId.js
blob: d55afd8baa6cdfa6556013bead00ff80f8ace18b [
file
] [
log
] [
blame
]
function
isLocalId
(
id
)
{
return
(
/^_local/
).
test
(
id
);
}
export
default
isLocalId
;