Tizen 2.0 Release
[platform/framework/web/web-ui-fw.git] / libs / js / jquery-mobile-1.2.0 / node_modules / grunt / node_modules / temporary / examples / dir.js
1 /**
2  * Temporary - The lord of tmp.
3  * 
4  * Author: Veselin Todorov <hi@vesln.com>
5  * Licensed under the MIT License.
6  */
7
8 var Tempdir = require('../lib/dir');
9 var dir = new Tempdir('foo') // name - optional
10
11 console.log(dir.path); // path.
12
13 /**
14  * You can also use:
15  * 
16  * dir.rmdir
17  * dir.rmdirSync
18  */