Skip to content

Commit

Permalink
Removed accidental const statement from utils
Browse files Browse the repository at this point in the history
  • Loading branch information
nebrelbug committed Oct 9, 2019
1 parent 48b6ea0 commit 9900999
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/utils.js
Expand Up @@ -40,7 +40,7 @@ export function load (options, str) {

if (filePath) {
// If $file is passed in
const fs = require('fs')
var fs = require('fs')
if (caching !== false) {
if (!cache.hasOwnProperty(filePath)) {
cache[filePath] = C(fs.readFileSync(filePath, 'utf8'))
Expand Down

0 comments on commit 9900999

Please sign in to comment.