Sign in
apache
/
pouchdb
/
refs/heads/master
/
.
/
packages
/
node_modules
/
pouchdb-utils
/
src
/
nextTick.js
blob: 9d01e4bbb1d5fba261c7bb0cc6b439de5bf397bf [
file
] [
log
] [
blame
]
const
nextTick
=
typeof
queueMicrotask
===
"function"
?
queueMicrotask
.
bind
(
undefined
)
:
function
nextTick
(
fn
)
{
Promise
.
resolve
().
then
(
fn
);
};
export
default
nextTick
;