mirror of
https://github.com/rails/rails.git
synced 2022-11-09 12:12:34 -05:00
Remove unnecessary escape character
This commit is contained in:
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)
|
||||
|
|
Loading…
Reference in a new issue