Sign in
chromium
/
devtools
/
devtools-frontend
/
b3cd0a4f0ce68bbba2f63ebed0ec8564643eda2e
/
.
/
node_modules
/
ramda
/
es
/
internal
/
_dropLast.js
blob: 59ba5f8264d41b619431e134c7f32d27a04459fe [
file
] [
log
] [
blame
]
import
take from
"../take.js"
;
export
default
function
dropLast
(
n
,
xs
)
{
return
take
(
n
<
xs
.
length
?
xs
.
length
-
n
:
0
,
xs
);
}