UNPKG

@ashejuniper/skim

Version:

Skim over text in JavaScript strings

20 lines (17 loc) 340 B
function skim( corpus, textToSkim ) { try { if ( !corpus.startsWith(textToSkim) ) { return new Error(`corpus does not begin with "${textToSkim}"`); } return corpus.substr(textToSkim.length); } catch (error) { return error; } } module.exports = skim;