Update dependencies

This commit is contained in:
Christoph Wiechert
2018-12-14 15:19:47 +01:00
parent 5fb623b512
commit 0260c734e0
15 changed files with 5586 additions and 5029 deletions

View File

@@ -1,9 +1,11 @@
if(!String.prototype.startsWith) {
String.prototype.startsWith = function(searchString, position) {
position = position || 0;
return this.indexOf(searchString, position) === position;
};
}
// import "babel-polyfill";
// if(!String.prototype.startsWith) {
// String.prototype.startsWith = function(searchString, position) {
// position = position || 0;
// return this.indexOf(searchString, position) === position;
// };
// }
import Vue from 'vue';
import Upload from './Upload.vue';