Sign in
apache
/
incubator-resilientdb-ResContract
/
a38804e78a872ef90e5cbab1c702c7554a393c9b
/
.
/
node_modules
/
rxjs
/
dist
/
esm5
/
internal
/
operators
/
skip.js
blob: 4804421855ebb310388c1c83525d09a510d1b276 [
file
] [
log
] [
blame
]
import
{
filter
}
from
'./filter'
;
export
function
skip
(
count
)
{
return
filter
(
function
(
_
,
index
)
{
return
count
<=
index
;
});
}
//# sourceMappingURL=skip.js.map