Returns source with a given number of characters removed from start position.
source
// Remove three characters starting at position 1omitChars(`hello there`, 1, 3); // ie. removes 'ell'// Yields: `ho there` Copy
// Remove three characters starting at position 1omitChars(`hello there`, 1, 3); // ie. removes 'ell'// Yields: `ho there`
Start point to remove
Number of characters to remove
Returns
source
with a given number of characters removed from start position.