Skip to content
This repository has been archived by the owner on Sep 9, 2022. It is now read-only.

Commit

Permalink
Removed unnecessary escape characters.
Browse files Browse the repository at this point in the history
  • Loading branch information
vanruesc committed Jun 21, 2017
1 parent c2e6a26 commit 72e9b25
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/inline-import.js
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ import { Settings } from "./settings.js";
* @private
*/

const importRegExp = /import\s*(\w*)\s*from\s*[\"\'](.*)[\"\']/ig;
const importRegExp = /import\s*(\w*)\s*from\s*["'](.*)["']/ig;

/**
* The current inlining settings.
Expand Down

0 comments on commit 72e9b25

Please sign in to comment.