Refactor. Update dependencies. Update tests. Make img plugin async.

This commit is contained in:
Alexandre Gigliotti
2015-11-20 16:06:43 -08:00
parent 6e924c49ac
commit 068dab8e8f
12 changed files with 373 additions and 268 deletions

View File

@@ -7,8 +7,6 @@
* @param {String} path
* @return {Boolean}
*/
var isTemplateExpression = function (path) {
return /^{{.*}}$/.test(path);
};
const isTemplateExpression = path => /^{{.*}}$/.test(path);
module.exports = isTemplateExpression;