/**
* Adapted from THREE.js under MIT license
* @author Don McCurdy / https://www.donmccurdy.com
*/exportfunctionextractUrlBase(url) {
const index = url.lastIndexOf('/');
return index === -1 ? './' : url.substr(0, index + 1);
}
//# sourceMappingURL=loader-utils.js.map