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 e411b4d commit 9bdff54Copy full SHA for 9bdff54
lib/snippets.js
@@ -123,7 +123,7 @@ module.exports = {
123
124
loadUserSnippets (callback) {
125
const userSnippetsPath = this.getUserSnippetsPath()
126
- return fs.stat(userSnippetsPath, (error, stat) => {
+ fs.stat(userSnippetsPath, (error, stat) => {
127
if (stat != null && stat.isFile()) {
128
this.loadSnippetsFile(userSnippetsPath, snippets => {
129
const result = {}
0 commit comments