Files
icehrm/web/node_modules/moment/package.js
2020-05-20 18:47:29 +02:00

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);
}
}
};