Merge branch 'create-folder-if-not-exists'

This commit is contained in:
Angelos Chalaris
2019-01-09 19:44:14 +02:00
4 changed files with 470 additions and 76 deletions

File diff suppressed because it is too large Load Diff

View File

@ -0,0 +1,6 @@
const expect = require('expect');
const {createDirIfNotExists} = require('./_30s.js');
test('createDirIfNotExists is a Function', () => {
expect(createDirIfNotExists).toBeInstanceOf(Function);
});