diff --git a/eg/show-xdg-paths-detailed.js b/eg/show-xdg-paths-detailed.js index 35c9d8f..99344e8 100644 --- a/eg/show-xdg-paths-detailed.js +++ b/eg/show-xdg-paths-detailed.js @@ -1,7 +1,9 @@ 'use strict'; const util = require('util'); + const _ = require('lodash'); + const xdg = require('../src/lib'); console.log('xdg.name:', xdg.name); diff --git a/eg/show-xdg-paths.js b/eg/show-xdg-paths.js index 28858c8..ba743dd 100644 --- a/eg/show-xdg-paths.js +++ b/eg/show-xdg-paths.js @@ -1,6 +1,7 @@ 'use strict'; const _ = require('lodash'); + const xdg = require('../src/lib'); _.each(xdg, (value, key) => {