DefinitelyTyped/mkpath/mkpath-tests.ts
2015-02-16 17:23:00 +13:00

10 lines
254 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);