(dir)
| 110 | }; |
| 111 | |
| 112 | const appendSlash = function(dir) { |
| 113 | if (dir) { |
| 114 | const lastChar = dir.substring(dir.length - 1, dir.length); |
| 115 | if (lastChar !== path.sep) return dir + path.sep; |
| 116 | } |
| 117 | }; |
| 118 | |
| 119 | // eslint-disable-next-line no-unused-vars |
| 120 | const includedProcess = function(content, filepath) { |