Skip to content

Commit

Permalink
use arrow functions
Browse files Browse the repository at this point in the history
  • Loading branch information
chrisguttandin committed Nov 30, 2016
1 parent b6daa5e commit 481fc73
Show file tree
Hide file tree
Showing 10 changed files with 10 additions and 10 deletions.
2 changes: 1 addition & 1 deletion Gruntfile.js
@@ -1,6 +1,6 @@
const loadGruntConfig = require('load-grunt-config');

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

loadGruntConfig(grunt, {
configPath: process.cwd() + '/config/grunt'
Expand Down
2 changes: 1 addition & 1 deletion config/karma/config.js
@@ -1,4 +1,4 @@
module.exports = function (config) {
module.exports = (config) => {

config.set({

Expand Down
2 changes: 1 addition & 1 deletion config/karma/expectation-chrome-canary.js
@@ -1,6 +1,6 @@
var common = require('./expectation.js');

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

common(config);

Expand Down
2 changes: 1 addition & 1 deletion config/karma/expectation-chrome.js
@@ -1,6 +1,6 @@
var common = require('./expectation.js');

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

common(config);

Expand Down
2 changes: 1 addition & 1 deletion config/karma/expectation-edge.js
@@ -1,6 +1,6 @@
var common = require('./expectation.js');

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

common(config);

Expand Down
2 changes: 1 addition & 1 deletion config/karma/expectation-firefox-developer.js
@@ -1,6 +1,6 @@
var common = require('./expectation.js');

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

common(config);

Expand Down
2 changes: 1 addition & 1 deletion config/karma/expectation-firefox.js
@@ -1,6 +1,6 @@
var common = require('./expectation.js');

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

common(config);

Expand Down
2 changes: 1 addition & 1 deletion config/karma/expectation-opera.js
@@ -1,6 +1,6 @@
var common = require('./expectation.js');

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

common(config);

Expand Down
2 changes: 1 addition & 1 deletion config/karma/expectation-safari.js
@@ -1,6 +1,6 @@
var common = require('./expectation.js');

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

common(config);

Expand Down
2 changes: 1 addition & 1 deletion config/karma/expectation.js
@@ -1,4 +1,4 @@
module.exports = function (config) {
module.exports = (config) => {

config.set({

Expand Down

0 comments on commit 481fc73

Please sign in to comment.