Skip to content

Commit

Permalink
Don't use fat arrow functions in gruntfile
Browse files Browse the repository at this point in the history
  • Loading branch information
timbeadle committed Apr 24, 2021
1 parent d105a33 commit fa7043e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tasks/cfpathcheck.js
Original file line number Diff line number Diff line change
Expand Up @@ -9,15 +9,15 @@
/*global module, require */
/*eslint-env es6 */

module.exports = (grunt) => {
module.exports = function (grunt) {

// Please see the Grunt documentation for more information regarding task
// creation: http://gruntjs.com/creating-tasks

grunt.registerMultiTask(
'cfpathcheck',
'Grunt wrapper for cfpathcheck',
() => {
function () {
const cfpathcheck = require('cfpathcheck/lib/cfpathcheck');

// Merge task-specific and/or target-specific options with these defaults.
Expand Down

0 comments on commit fa7043e

Please sign in to comment.