UNPKG

unbundle

Version:

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

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