12 lines
273 B
JavaScript
Raw Permalink Normal View History

2025-05-22 16:37:43 +08:00
var profile = {
resourceTags: {
ignore: function(filename, mid){
// only include moment/moment
return mid != "moment/moment";
},
amd: function(filename, mid){
return /\.js$/.test(filename);
}
}
};