import { last } from "https://deno.land/x/rambda@9.3.0/index.d.ts";
It returns the last element of input
, as the input
can be either a string or an array. It returns undefined
if array has length of 0.
import { last } from "https://deno.land/x/rambda@9.3.0/index.d.ts";
It returns the last element of input
, as the input
can be either a string or an array. It returns undefined
if array has length of 0.