Return the first
nUnicode code points of a string.
var firstCodePoint = require( '@stdlib/string/base/first-code-point' );Returns the first n Unicode code points of a string.
var out = firstCodePoint( 'last man standing', 1 );
// returns 'l'
out = firstCodePoint( 'Hidden Treasures', 1 );
// returns 'H'
out = firstCodePoint( 'foo bar', 5 );
// returns 'foo b'
out = firstCodePoint( 'foo bar', 10 );
// returns 'foo bar'var firstCodePoint = require( '@stdlib/string/base/first-code-point' );
var str = firstCodePoint( 'presidential election', 1 );
// returns 'p'
str = firstCodePoint( 'JavaScript', 1 );
// returns 'J'
str = firstCodePoint( 'The Last of the Mohicans', 5 );
// returns 'The L'
str = firstCodePoint( 'अनुच्छेद', 1 );
// returns 'अ'@stdlib/string/base/first: return the first UTF-16 code unit of a string.@stdlib/string/base/first-grapheme-cluster: return the first grapheme cluster (i.e., user-perceived character) of a string.@stdlib/string/base/last-code-point: return the last Unicode code point of a string.@stdlib/string/base/remove-first-code-point: remove the first Unicode code point of a string.@stdlib/string/first: return the first character(s) of a string.