mirror of
https://github.com/nunocoracao/blowfish.git
synced 2025-04-21 04:31:53 +02: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);
|
||
|
}
|
||
|
}
|
||
|
};
|