UNPKG

unbundle

Version:

`require()` and `import`/`export` in the browser, without the bundling

6 lines (5 loc) 144 B
export function trimAfter (pattern) { return this.includes(pattern) ? this.substring(this.indexOf(pattern) + pattern.length) : this }