angular-filter
angular-filter copied to clipboard
Is is possible to require angular.filter as a depedency
I installed the angular-filter module via npm. Is there a way to require this module inside index.js like below, rather than adding it as a <script> tag in index.html. My app uses browserify and the index.html will be including only bundle.js.
module.exports = {
name: 'MyApp',
deps: [require('angular.filter')]
};