diff --git a/helloWorld/helloWorld.spec.js b/helloWorld/helloWorld.spec.js index af40823..7f9198d 100644 --- a/helloWorld/helloWorld.spec.js +++ b/helloWorld/helloWorld.spec.js @@ -2,4 +2,4 @@ const helloWorld = require('./helloWorld'); test('says "Hello, World!"', function() { expect(helloWorld()).toBe("Hello, World!"); -}); \ No newline at end of file +}); diff --git a/pigLatin/pigLatin.js b/pigLatin/pigLatin.js index 7bfeb78..d1bc2dd 100644 --- a/pigLatin/pigLatin.js +++ b/pigLatin/pigLatin.js @@ -18,4 +18,4 @@ const firstVowelIndex = function(string) { return string.indexOf(vowels[0]); }; - module.exports = pigLatin; \ No newline at end of file + module.exports = pigLatin;