Base (i.e., lower-level) string functions.
var string = require( '@stdlib/string/base' );
Namespace containing "base" (i.e., lower-level) string functions.
var ns = string;
// returns {...}
The namespace has the following sub-namespaces:
formatInterpolate( tokens, ...args )
: generate string from a token array by interpolating values.formatTokenize( str )
: tokenize a string into an array of string parts and format identifier objects.
var objectKeys = require( '@stdlib/utils/keys' );
var ns = require( '@stdlib/string/base' );
console.log( objectKeys( ns ) );