mirror of
https://github.com/nunocoracao/blowfish.git
synced 2026-01-30 16:31:52 +01:00
12 lines
273 B
JavaScript
12 lines
273 B
JavaScript
var profile = {
|
|
resourceTags: {
|
|
ignore: function(filename, mid){
|
|
// only include moment/moment
|
|
return mid != "moment/moment";
|
|
},
|
|
amd: function(filename, mid){
|
|
return /\.js$/.test(filename);
|
|
}
|
|
}
|
|
};
|