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