We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 62462de commit 79b9aaaCopy full SHA for 79b9aaa
lib/plugin/autoDelay.js
@@ -52,13 +52,13 @@ const defaultConfig = {
52
*
53
*/
54
module.exports = function (config) {
55
- supportedHelpers.push('REST')
+ standardActingHelpers.push('REST')
56
const helpers = Container.helpers()
57
let helper
58
59
config = Object.assign(defaultConfig, config)
60
61
- for (const helperName of supportedHelpers) {
+ for (const helperName of standardActingHelpers) {
62
if (Object.keys(helpers).indexOf(helperName) > -1) {
63
helper = helpers[helperName]
64
}
0 commit comments