Skip to content

Latest commit

 

History

History

head

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 
 
 
 
 

head

Extracts the first length characters from the input text.

npm i @plexis/head

Usage

import head from '@plexis/head';

head(); // => ''
head('Hello'); // => 'H'
head('Hello', 2); // => 'He'
head('Hello', 100); // => 'Hello'

Aliases

import {head} from 'plexis';
import {first} from 'plexis';
import {popFirst} from 'plexis';