Remove unnecessary escape character

This commit is contained in:
Francesco Rodríguez 2018-10-19 15:56:27 +02:00
parent d197059666
commit 0f7655c325
2 changed files with 4 additions and 4 deletions

@ -1,5 +1,5 @@
// Load all the channels within this directory and all subdirectories.
// Load all the channels within this directory and all subdirectories.
// Channel files must be named *_channel.js.
const channels = require.context('.', true, /\_channel\.js$/)
const channels = require.context('.', true, /_channel\.js$/)
channels.keys().forEach(channels)

@ -1,5 +1,5 @@
// Load all the channels within this directory and all subdirectories.
// Load all the channels within this directory and all subdirectories.
// Channel files must be named *_channel.js.
const channels = require.context('.', true, /\_channel\.js$/)
const channels = require.context('.', true, /_channel\.js$/)
channels.keys().forEach(channels)