time-to-botec/js/node_modules/@stdlib/os/tmpdir
NunoSempere b6addc7f05 feat: add the node modules
Necessary in order to clearly see the squiggle hotwiring.
2022-12-03 12:44:49 +00:00
..
bin feat: add the node modules 2022-12-03 12:44:49 +00:00
docs feat: add the node modules 2022-12-03 12:44:49 +00:00
etc feat: add the node modules 2022-12-03 12:44:49 +00:00
lib feat: add the node modules 2022-12-03 12:44:49 +00:00
package.json feat: add the node modules 2022-12-03 12:44:49 +00:00
README.md feat: add the node modules 2022-12-03 12:44:49 +00:00

tmpdir

Return the directory for storing temporary files.

Usage

var tmpdir = require( '@stdlib/os/tmpdir' );

tmpdir()

Returns the directory for storing temporary files.

var dir = tmpdir();
// e.g., returns '/path/to/temporary/files/directory'

Examples

var PATH_SEP = require( '@stdlib/constants/path/sep' );
var tmpdir = require( '@stdlib/os/tmpdir' );

var parts = tmpdir().split( PATH_SEP );
console.log( parts );

CLI

Usage

Usage: tmpdir [options]

Options:

  -h,    --help                Print this message.
  -V,    --version             Print the package version.

Examples

$ tmpdir
/path/to/temporary/files/directory