client/annotviz/gulp/util/scriptFilter.js
author rougeronj
Fri, 23 Jan 2015 18:18:33 +0100
changeset 141 e6892a30d454
parent 85 eff9460bd4f2
permissions -rw-r--r--
Update AnnotVizView for the 3rd Day

var path = require('path');

// Filters out non .js files. Prevents
// accidental inclusion of possible hidden files
module.exports = function(name) {
    return /(\.(js)$)/i.test(path.extname(name));
};