UNPKG

unbundle

Version:

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

9 lines (8 loc) 239 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.trimAfter = trimAfter; function trimAfter(pattern) { return this.includes(pattern) ? this.substring(this.indexOf(pattern) + pattern.length) : this; }