mkdtemp-async
v1.0.0
Published
Typed async mkdtemp function
Downloads
36
Readme
mkdtemp-async
Typed async mkdtemp function
// @flow
import mkdtempAsync from 'mkdtemp-async';
mkdtempAsync('path/to/file.txt').then(buffer => {
console.log(buffer.toString());
});