mirror of https://github.com/nodejs/node.git
10 lines
222 B
JavaScript
10 lines
222 B
JavaScript
|
var fstream = require("../fstream.js")
|
||
|
|
||
|
fstream
|
||
|
.Writer({ path: "path/to/symlink"
|
||
|
, linkpath: "./file"
|
||
|
, isSymbolicLink: true
|
||
|
, mode: "0755" // octal strings supported
|
||
|
})
|
||
|
.end()
|