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.
2 parents 34315db + aa172f0 commit 24ef6eaCopy full SHA for 24ef6ea
lib/IgnorePlugin.js
@@ -16,7 +16,7 @@ class IgnorePlugin {
16
* Only returns true if a "resourceRegExp" exists
17
* and the resource given matches the regexp.
18
*/
19
- checkResouce(resource) {
+ checkResource(resource) {
20
if(!this.resourceRegExp) {
21
return false;
22
}
@@ -45,7 +45,7 @@ class IgnorePlugin {
45
if(!result) {
46
return true;
47
48
- return this.checkResouce(result.request) && this.checkContext(result.context);
+ return this.checkResource(result.request) && this.checkContext(result.context);
49
50
51
checkIgnore(result, callback) {
0 commit comments