Skip to main content
Module

x/rambda/source/tail.js

Faster and smaller alternative to Ramda
Go to Latest
File
import {drop} from './drop'
export function tail(listOrString) { return drop(1, listOrString)}