UNPKG

273 BJavaScriptView Raw
1var profile = {
2 resourceTags: {
3 ignore: function(filename, mid){
4 // only include moment/moment
5 return mid != "moment/moment";
6 },
7 amd: function(filename, mid){
8 return /\.js$/.test(filename);
9 }
10 }
11};