DefinitelyTyped/mkpath/mkpath-tests.ts
2016-02-16 01:20:30 +09:00

10 lines
245 B
TypeScript

/// <reference path="mkpath.d.ts" />
import mkpath = require('mkpath');
mkpath('red/green/violet', function (err) {
if (err) throw err;
console.log('Directory structure red/green/violet created');
});
mkpath.sync('/tmp/blue/orange', 700);