Skip to content
This repository has been archived by the owner on May 11, 2021. It is now read-only.

Commit

Permalink
Fix double quote causing lint error.
Browse files Browse the repository at this point in the history
  • Loading branch information
andywaite committed Sep 2, 2015
1 parent 5d7ebdc commit b6a23f9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ export function setScriptLoadFunction(fn) {
}

function loadExternalScript(url) {
if (typeof injectedScriptLoadFunction === "function") {
if (typeof injectedScriptLoadFunction === 'function') {
injectedScriptLoadFunction(url);
return;
}
Expand Down

0 comments on commit b6a23f9

Please sign in to comment.